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

Side by Side Diff: build/android/dex_action.gypi

Issue 21977003: Build changes for updating Android SDK to 4.3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Turns out we need ANDROID_SDK_VERSION in constants.py (findbugs uses it). Created 7 years, 4 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 unified diff | Download patch
« no previous file with comments | « build/android/ant/apk-package-resources.xml ('k') | build/android/envsetup.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is meant to be included into an action to provide a rule that dexes 5 # This file is meant to be included into an action to provide a rule that dexes
6 # compiled java files. If proguard_enabled == "true" and CONFIGURATION_NAME == 6 # compiled java files. If proguard_enabled == "true" and CONFIGURATION_NAME ==
7 # "Release", then it will dex the proguard_enabled_input_path instead of the 7 # "Release", then it will dex the proguard_enabled_input_path instead of the
8 # normal dex_input_paths/dex_generated_input_paths. 8 # normal dex_input_paths/dex_generated_input_paths.
9 # 9 #
10 # To use this, create a gyp target with the following form: 10 # To use this, create a gyp target with the following form:
(...skipping 29 matching lines...) Expand all
40 '<(DEPTH)/build/android/gyp/dex.py', 40 '<(DEPTH)/build/android/gyp/dex.py',
41 '>@(input_paths)', 41 '>@(input_paths)',
42 '>@(dex_input_paths)', 42 '>@(dex_input_paths)',
43 ], 43 ],
44 'outputs': [ 44 'outputs': [
45 '<(output_path)', 45 '<(output_path)',
46 ], 46 ],
47 'action': [ 47 'action': [
48 'python', '<(DEPTH)/build/android/gyp/dex.py', 48 'python', '<(DEPTH)/build/android/gyp/dex.py',
49 '--dex-path=<(output_path)', 49 '--dex-path=<(output_path)',
50 '--android-sdk-root=<(android_sdk_root)', 50 '--android-sdk-tools=<(android_sdk_tools)',
51 '--configuration-name=<(CONFIGURATION_NAME)', 51 '--configuration-name=<(CONFIGURATION_NAME)',
52 '--proguard-enabled=<(proguard_enabled)', 52 '--proguard-enabled=<(proguard_enabled)',
53 '--proguard-enabled-input-path=<(proguard_enabled_input_path)', 53 '--proguard-enabled-input-path=<(proguard_enabled_input_path)',
54 54
55 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja. 55 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja.
56 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', 56 '--ignore=>!(echo \'>(_inputs)\' | md5sum)',
57 57
58 '>@(dex_input_paths)', 58 '>@(dex_input_paths)',
59 '>@(dex_generated_input_dirs)', 59 '>@(dex_generated_input_dirs)',
60 ] 60 ]
61 } 61 }
OLDNEW
« no previous file with comments | « build/android/ant/apk-package-resources.xml ('k') | build/android/envsetup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698