summaryrefslogtreecommitdiffstats
path: root/build/java_apk.gypi
diff options
context:
space:
mode:
authorcjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-16 02:40:29 +0000
committercjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-05-16 02:40:29 +0000
commitf3ce17944b9c19a8d7ca34174edd94b642a9b462 (patch)
treea067063520b1d815f8318060b744aea4db8e1bc5 /build/java_apk.gypi
parent47163d4fffec1fd74423224a932034b82a50cc6b (diff)
downloadchromium_src-f3ce17944b9c19a8d7ca34174edd94b642a9b462.zip
chromium_src-f3ce17944b9c19a8d7ca34174edd94b642a9b462.tar.gz
chromium_src-f3ce17944b9c19a8d7ca34174edd94b642a9b462.tar.bz2
[Android] Only always trigger stripping with component build
With the component build we need to always trigger stripping because we can't specify the inputs correctly at gyp time. This is not required for the non-component build. Also, slightly refactor strip_native_libraries.gypi and its users to make it more clear what variables are being used by the .gypi. Review URL: https://chromiumcodereview.appspot.com/14844009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200422 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/java_apk.gypi')
-rw-r--r--build/java_apk.gypi3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi
index f40ef7a..19f85bc 100644
--- a/build/java_apk.gypi
+++ b/build/java_apk.gypi
@@ -217,9 +217,12 @@
],
},
{
+ 'action_name': 'strip_native_libraries',
'variables': {
+ 'ordered_libraries_file%': '<(ordered_libraries_file)',
'stripped_libraries_dir': '<(libraries_source_dir)',
'input_paths': ['<@(native_libs_paths)'],
+ 'stamp': '<(strip_stamp)'
},
'includes': ['../build/android/strip_native_libraries.gypi'],
},