aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-05-23 00:03:13 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-05-23 00:03:13 +0000
commitd0ce8e8aabe7445377fe7307572df89394df21c9 (patch)
tree8c8251386875bdf7ea50c3189ad2d02799ad4b57
parent542d60062fa56103a0e7ee53aa19af6adc9b136b (diff)
parentff7d3972189d0f0b5c678b2b4673a78f017dd55f (diff)
downloadandroid_build_soong-d0ce8e8aabe7445377fe7307572df89394df21c9.tar.gz
android_build_soong-d0ce8e8aabe7445377fe7307572df89394df21c9.tar.bz2
android_build_soong-d0ce8e8aabe7445377fe7307572df89394df21c9.zip
Merge "Add libc++.so as install dependencies for hermetic Python."
-rw-r--r--python/androidmk.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/python/androidmk.go b/python/androidmk.go
index 5fa01abb..b2d3b011 100644
--- a/python/androidmk.go
+++ b/python/androidmk.go
@@ -85,5 +85,7 @@ func (installer *pythonInstaller) AndroidMk(base *Module, ret *android.AndroidMk
fmt.Fprintln(w, "LOCAL_MODULE_SUFFIX := "+filepath.Ext(file))
fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(OUT_DIR)/"+filepath.Clean(dir))
fmt.Fprintln(w, "LOCAL_MODULE_STEM := "+stem)
+ fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := libc++")
+
})
}