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

Side by Side Diff: build/android/setup.gyp

Issue 1136573002: Use the Errorprone Compiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Full Sync and Update Created 5 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 unified diff | Download patch
« no previous file with comments | « build/android/gyp/javac.py ('k') | build/config/android/config.gni » ('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 'conditions': [ 5 'conditions': [
6 ['component == "shared_library"', { 6 ['component == "shared_library"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 # These libraries from the Android ndk are required to be packaged wit h 9 # These libraries from the Android ndk are required to be packaged wit h
10 # any APK that is built with them. build/java_apk.gypi expects any 10 # any APK that is built with them. build/java_apk.gypi expects any
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 # written to them). 70 # written to them).
71 'outputs': [''], 71 'outputs': [''],
72 'action': [ 72 'action': [
73 'mkdir', 73 'mkdir',
74 '-p', 74 '-p',
75 '<@(output_dirs)', 75 '<@(output_dirs)',
76 ], 76 ],
77 }, 77 },
78 ], 78 ],
79 }, # build_output_dirs 79 }, # build_output_dirs
80 {
81 'target_name': 'sun_tools_java',
82 'type': 'none',
83 'variables': {
84 'found_jar_path': '<(PRODUCT_DIR)/sun_tools_java/tools.jar',
85 'jar_path': '<(found_jar_path)',
86 },
87 'includes': [
88 '../../build/host_prebuilt_jar.gypi',
89 ],
90 'actions': [
91 {
92 'action_name': 'find_sun_tools_jar',
93 'variables' : {
94 },
95 'inputs' : [
96 'gyp/find_sun_tools_jar.py',
97 'gyp/util/build_utils.py',
98 ],
99 'outputs': [
100 '<(found_jar_path)',
101 ],
102 'action': [
103 'python', 'gyp/find_sun_tools_jar.py',
104 '--output', '<(found_jar_path)',
105 ],
106 },
107 ],
108 }, # sun_tools_java
80 ] 109 ]
81 } 110 }
82 111
OLDNEW
« no previous file with comments | « build/android/gyp/javac.py ('k') | build/config/android/config.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698