Merge "Most of the TARGET_COPY_OUT_xxx variables are not constant"
This commit is contained in:
commit
82d34b6472
1 changed files with 10 additions and 1 deletions
|
@ -188,9 +188,18 @@ def init(g):
|
||||||
if g["HOST_BUILD_TYPE"] not in ["release", "debug"]:
|
if g["HOST_BUILD_TYPE"] not in ["release", "debug"]:
|
||||||
fail("HOST_BUILD_TYPE must be either release or debug, not '%s'" % g["HOST_BUILD_TYPE"])
|
fail("HOST_BUILD_TYPE must be either release or debug, not '%s'" % g["HOST_BUILD_TYPE"])
|
||||||
|
|
||||||
|
g.update([
|
||||||
|
("TARGET_COPY_OUT_VENDOR", "||VENDOR-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_PRODUCT", "||PRODUCT-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_PRODUCT_SERVICES", "||PRODUCT-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_SYSTEM_EXT", "||SYSTEM_EXT-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_ODM", "||ODM-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_VENDOR_DLKM", "||VENDOR_DLKM-PATH-PH||"),
|
||||||
|
("TARGET_COPY_OUT_ODM_DLKM", "||ODM_DLKM-PATH-PH||"),
|
||||||
|
])
|
||||||
|
|
||||||
# TODO(asmundak): there is more stuff in envsetup.mk lines 249-292, but
|
# TODO(asmundak): there is more stuff in envsetup.mk lines 249-292, but
|
||||||
# it does not seem to affect product configuration. Revisit this.
|
# it does not seem to affect product configuration. Revisit this.
|
||||||
|
|
||||||
g["ART_APEX_JARS"] = [
|
g["ART_APEX_JARS"] = [
|
||||||
"com.android.art:core-oj",
|
"com.android.art:core-oj",
|
||||||
"com.android.art:core-libart",
|
"com.android.art:core-libart",
|
||||||
|
|
Loading…
Reference in a new issue