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

Unified Diff: build/uiautomator_test.gypi

Issue 317423003: Update some gyp targets to use dex_action.gypi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unrelated whitespace cleanup Created 6 years, 6 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 | « build/java_prebuilt.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/uiautomator_test.gypi
diff --git a/build/uiautomator_test.gypi b/build/uiautomator_test.gypi
index eaf4444cf1a07da51820c7b2dda85ba02a9b0589..0f341abd88e216a5e718c51405a57eeb032abd13 100644
--- a/build/uiautomator_test.gypi
+++ b/build/uiautomator_test.gypi
@@ -24,20 +24,13 @@
{
'action_name': 'dex_<(_target_name)',
'message': 'Dexing <(_target_name) jar',
- 'inputs': [
- '<(DEPTH)/build/android/gyp/util/build_utils.py',
- '<(DEPTH)/build/android/gyp/dex.py',
- '>@(library_dexed_jars_paths)',
- ],
- 'outputs': [
- '<(output_dex_path)',
- ],
- 'action': [
- 'python', '<(DEPTH)/build/android/gyp/dex.py',
- '--dex-path=<(output_dex_path)',
- '--android-sdk-tools=<(android_sdk_tools)',
- '>@(library_dexed_jars_paths)',
- ],
+ 'variables': {
+ 'dex_input_paths': [
+ '>@(library_dexed_jars_paths)',
+ ],
+ 'output_path': '<(output_dex_path)',
+ },
+ 'includes': [ 'android/dex_action.gypi' ],
},
],
}
« no previous file with comments | « build/java_prebuilt.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698