Merge "Most of the TARGET_COPY_OUT_xxx variables are not constant" am: 82d34b6472

Original change: https://android-review.googlesource.com/c/platform/build/+/1797188

Change-Id: I4b5e7319e8bf3691393f06c0dfc7aeab40ce9818
This commit is contained in:
Treehugger Robot
2021-08-17 13:17:02 +00:00
committed by Automerger Merge Worker

View File

@@ -188,9 +188,18 @@ def init(g):
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"])
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
# it does not seem to affect product configuration. Revisit this.
g["ART_APEX_JARS"] = [
"com.android.art:core-oj",
"com.android.art:core-libart",