summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Faust <colefaust@google.com>2022-02-09 23:10:46 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-02-09 23:10:46 +0000
commit4515481c59d3f651ad786d8ece652e36a50f5337 (patch)
treee7e36f8f9986ea425382791ada6228ff19f774f2
parentc177f7d3a938dad7b2eff764893da50edd5c2563 (diff)
parent784250152230ca4aa33382bc0dd75fdf9e5b4091 (diff)
downloadart-4515481c59d3f651ad786d8ece652e36a50f5337.tar.gz
Change add_soong_config_var_value to soong_config_set am: 7842501522
Original change: https://android-review.googlesource.com/c/device/generic/art/+/1967006 Change-Id: Id91b8d0f37813f85606d4703b23f679c071a9878
-rw-r--r--BoardConfigCommon.mk3
-rw-r--r--art_module/art_module.mk3
2 files changed, 2 insertions, 4 deletions
diff --git a/BoardConfigCommon.mk b/BoardConfigCommon.mk
index dda4b09..1ff137f 100644
--- a/BoardConfigCommon.mk
+++ b/BoardConfigCommon.mk
@@ -27,5 +27,4 @@ TARGET_CPU_SMP := true
# tree.
# TODO(b/174997203): Clean this up when there is a better way to switch between
# prebuilts and sources.
-$(call add_soong_config_namespace,art_module)
-$(call add_soong_config_var_value,art_module,source_build,true)
+$(call soong_config_set,art_module,source_build,true)
diff --git a/art_module/art_module.mk b/art_module/art_module.mk
index d8074ed..39bda5b 100644
--- a/art_module/art_module.mk
+++ b/art_module/art_module.mk
@@ -20,5 +20,4 @@
# tree.
# TODO(b/174997203): Clean up the art_module_* products when there is a better
# way to switch between prebuilts and sources.
-$(call add_soong_config_namespace,art_module)
-$(call add_soong_config_var_value,art_module,source_build,true)
+$(call soong_config_set,art_module,source_build,true)