Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1902)

Unified Diff: build/android/gyp/touch.py

Issue 330203006: Add an empty native library to gyp_managed_install's incomplete apks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/java_apk.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/touch.py
diff --git a/tools/profile_chrome.py b/build/android/gyp/touch.py
similarity index 65%
copy from tools/profile_chrome.py
copy to build/android/gyp/touch.py
index bed8244529622ada9d42992a2a30ee8e394cd2e1..7b4375e40abcd3f7e37516f2182dc61d0539d570 100755
--- a/tools/profile_chrome.py
+++ b/build/android/gyp/touch.py
@@ -6,8 +6,11 @@
import sys
-from profile_chrome import main
+from util import build_utils
+def main(argv):
+ for f in argv[1:]:
+ build_utils.Touch(f)
if __name__ == '__main__':
- sys.exit(main.main())
+ sys.exit(main(sys.argv))
« no previous file with comments | « no previous file | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698