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

Side by Side Diff: build/java_prebuilt.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/java_apk.gypi ('k') | build/uiautomator_test.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to package prebuilt Java JARs in a consistent manner. 6 # to package prebuilt Java JARs in a consistent manner.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'my-package_java', 10 # 'target_name': 'my-package_java',
(...skipping 28 matching lines...) Expand all
39 '<(DEPTH)/build/android/gyp/util/build_utils.py', 39 '<(DEPTH)/build/android/gyp/util/build_utils.py',
40 '<(DEPTH)/build/android/gyp/dex.py', 40 '<(DEPTH)/build/android/gyp/dex.py',
41 '<(jar_path)', 41 '<(jar_path)',
42 ], 42 ],
43 'outputs': [ 43 'outputs': [
44 '<(dex_path)', 44 '<(dex_path)',
45 ], 45 ],
46 'action': [ 46 'action': [
47 'python', '<(DEPTH)/build/android/gyp/dex.py', 47 'python', '<(DEPTH)/build/android/gyp/dex.py',
48 '--dex-path=<(dex_path)', 48 '--dex-path=<(dex_path)',
49 '--android-sdk-root=<(android_sdk_root)', 49 '--android-sdk-tools=<(android_sdk_tools)',
50 50
51 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja . 51 # TODO(newt): remove this once http://crbug.com/177552 is fixed in ninja .
52 '--ignore=>!(echo \'>(_inputs)\' | md5sum)', 52 '--ignore=>!(echo \'>(_inputs)\' | md5sum)',
53 53
54 '<(jar_path)', 54 '<(jar_path)',
55 ] 55 ]
56 }, 56 },
57 57
58 ], 58 ],
59 } 59 }
OLDNEW
« no previous file with comments | « build/java_apk.gypi ('k') | build/uiautomator_test.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698