How to build vendor module without full aosp source code

1.9k Views Asked by At

Is it possible to build only vendor module without full aosp source code tree?

Say I have downloaded the full code base in my PC and able to build the same. Now I want to replicate the same in another PC. Since it has space constraints, I would like to build only vendor module by copying the same from the downloaded code base. Suppose if it has any dependencies, can we place them and build successfully?

How can I compile the particular module without downloading the full source code?

1

There are 1 best solutions below

2
On

if you have the aosp code, You can use this command to just build the vendor image. use this after you launched the target that you want.

make vendor

or

make vnod

Note: without aosp source tree you wont be able to generate the vendor separately.