diff options
author | cjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-05 03:51:51 +0000 |
---|---|---|
committer | cjhopman@chromium.org <cjhopman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-05 03:51:51 +0000 |
commit | 02e35f29b5ff9164e0b929b9bebc52c4f3b60c0b (patch) | |
tree | 1aeb7ae9fbbfd754a08285b1d062a98f1bf18daf /build/java_apk.gypi | |
parent | c8f392add43c8234b6d0b678380a0c1018c030f9 (diff) | |
download | chromium_src-02e35f29b5ff9164e0b929b9bebc52c4f3b60c0b.zip chromium_src-02e35f29b5ff9164e0b929b9bebc52c4f3b60c0b.tar.gz chromium_src-02e35f29b5ff9164e0b929b9bebc52c4f3b60c0b.tar.bz2 |
Add input md5 check to create_device_library_links.py
The md5 stamp path includes the device serial (i.e. the stamp is
library-device specific).
Also, this no longer creates a shell for-loop as the command to send to
adb. adb shell has a ~1000 character limit for commands, and the
for-loop was exceeding that limit. Now that we only create links for
libraries that actually have changed, there is not as much benefit to
creating all the links in one adb command.
BUG=158821
Review URL: https://chromiumcodereview.appspot.com/13537006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192484 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/java_apk.gypi')
-rw-r--r-- | build/java_apk.gypi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/java_apk.gypi b/build/java_apk.gypi index f983408..33acb34 100644 --- a/build/java_apk.gypi +++ b/build/java_apk.gypi @@ -261,6 +261,7 @@ 'python', '<(DEPTH)/build/android/gyp/create_device_library_links.py', '--apk=<(final_apk_path)', '--libraries-json=<(ordered_libraries_file)', + '--libraries-dir=<(apk_libraries_dir)', '--target-dir=<(device_library_dir)', '--stamp=<(link_stamp)', ], |