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

Side by Side Diff: base/base.gyp

Issue 12385066: Fix downstream android webview build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 1101 matching lines...) Expand 10 before | Expand all | Expand 10 after
1112 'android/java/src/org/chromium/base/ThreadUtils.java', 1112 'android/java/src/org/chromium/base/ThreadUtils.java',
1113 ], 1113 ],
1114 'variables': { 1114 'variables': {
1115 'jni_gen_dir': 'base', 1115 'jni_gen_dir': 'base',
1116 }, 1116 },
1117 'includes': [ '../build/jni_generator.gypi' ], 1117 'includes': [ '../build/jni_generator.gypi' ],
1118 }, 1118 },
1119 { 1119 {
1120 'target_name': 'base_java', 1120 'target_name': 'base_java',
1121 'type': 'none', 1121 'type': 'none',
1122 'dependencies': [
1123 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1124 ],
1125 'variables': { 1122 'variables': {
1126 'java_in_dir': '../base/android/java', 1123 'java_in_dir': '../base/android/java',
1127 }, 1124 },
1128 'includes': [ '../build/java.gypi' ], 1125 'includes': [ '../build/java.gypi' ],
1126 'conditions': [
1127 ['android_build_type==0', {
1128 'dependencies': [
1129 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1130 ],
1131 }]
1132 ],
1129 }, 1133 },
1130 { 1134 {
1131 'target_name': 'base_java_test_support', 1135 'target_name': 'base_java_test_support',
1132 'type': 'none', 1136 'type': 'none',
1133 'dependencies': [ 1137 'dependencies': [
1134 'base_java', 1138 'base_java',
1135 ], 1139 ],
1136 'variables': { 1140 'variables': {
1137 'java_in_dir': '../base/test/android/javatests', 1141 'java_in_dir': '../base/test/android/javatests',
1138 }, 1142 },
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
1204 'base_unittests.isolate', 1208 'base_unittests.isolate',
1205 ], 1209 ],
1206 'sources': [ 1210 'sources': [
1207 'base_unittests.isolate', 1211 'base_unittests.isolate',
1208 ], 1212 ],
1209 }, 1213 },
1210 ], 1214 ],
1211 }], 1215 }],
1212 ], 1216 ],
1213 } 1217 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698