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

Side by Side Diff: base/base.gyp

Issue 12378004: Android: Add a java version of ObserverList. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Tommy's comments. 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
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 1116 matching lines...) Expand 10 before | Expand all | Expand 10 after
1127 'target_name': 'base_java_test_support', 1127 'target_name': 'base_java_test_support',
1128 'type': 'none', 1128 'type': 'none',
1129 'dependencies': [ 1129 'dependencies': [
1130 'base_java', 1130 'base_java',
1131 ], 1131 ],
1132 'variables': { 1132 'variables': {
1133 'java_in_dir': '../base/test/android/javatests', 1133 'java_in_dir': '../base/test/android/javatests',
1134 }, 1134 },
1135 'includes': [ '../build/java.gypi' ], 1135 'includes': [ '../build/java.gypi' ],
1136 }, 1136 },
1137 {
1138 'target_name': 'base_javatests',
1139 'type': 'none',
1140 'dependencies': [
1141 'base_java',
1142 'base_java_test_support',
1143 ],
1144 'variables': {
1145 'java_in_dir': '../base/android/javatests',
1146 },
1147 'includes': [ '../build/java.gypi' ],
1148 },
1137 ], 1149 ],
1138 }], 1150 }],
1139 ['OS == "win"', { 1151 ['OS == "win"', {
1140 'targets': [ 1152 'targets': [
1141 { 1153 {
1142 'target_name': 'debug_message', 1154 'target_name': 'debug_message',
1143 'type': 'executable', 1155 'type': 'executable',
1144 'sources': [ 1156 'sources': [
1145 'debug_message.cc', 1157 'debug_message.cc',
1146 ], 1158 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 'base_unittests.isolate', 1200 'base_unittests.isolate',
1189 ], 1201 ],
1190 'sources': [ 1202 'sources': [
1191 'base_unittests.isolate', 1203 'base_unittests.isolate',
1192 ], 1204 ],
1193 }, 1205 },
1194 ], 1206 ],
1195 }], 1207 }],
1196 ], 1208 ],
1197 } 1209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698