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

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: Added hasObserver call in the test. 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 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1111 'android/java/src/org/chromium/base/ThreadUtils.java', 1111 'android/java/src/org/chromium/base/ThreadUtils.java',
1112 ], 1112 ],
1113 'variables': { 1113 'variables': {
1114 'jni_gen_dir': 'base', 1114 'jni_gen_dir': 'base',
1115 }, 1115 },
1116 'includes': [ '../build/jni_generator.gypi' ], 1116 'includes': [ '../build/jni_generator.gypi' ],
1117 }, 1117 },
1118 { 1118 {
1119 'target_name': 'base_java', 1119 'target_name': 'base_java',
1120 'type': 'none', 1120 'type': 'none',
1121 'dependencies': [
1122 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
1123 ],
1121 'variables': { 1124 'variables': {
1122 'java_in_dir': '../base/android/java', 1125 'java_in_dir': '../base/android/java',
1123 }, 1126 },
1124 'includes': [ '../build/java.gypi' ], 1127 'includes': [ '../build/java.gypi' ],
1125 }, 1128 },
1126 { 1129 {
1127 'target_name': 'base_java_test_support', 1130 'target_name': 'base_java_test_support',
1128 'type': 'none', 1131 'type': 'none',
1129 'dependencies': [ 1132 'dependencies': [
1130 'base_java', 1133 'base_java',
1131 ], 1134 ],
1132 'variables': { 1135 'variables': {
1133 'java_in_dir': '../base/test/android/javatests', 1136 'java_in_dir': '../base/test/android/javatests',
1134 }, 1137 },
1135 'includes': [ '../build/java.gypi' ], 1138 'includes': [ '../build/java.gypi' ],
1136 }, 1139 },
1140 {
1141 'target_name': 'base_javatests',
1142 'type': 'none',
1143 'dependencies': [
1144 'base_java',
1145 'base_java_test_support',
1146 ],
1147 'variables': {
1148 'java_in_dir': '../base/android/javatests',
1149 },
1150 'includes': [ '../build/java.gypi' ],
1151 },
1137 ], 1152 ],
1138 }], 1153 }],
1139 ['OS == "win"', { 1154 ['OS == "win"', {
1140 'targets': [ 1155 'targets': [
1141 { 1156 {
1142 'target_name': 'debug_message', 1157 'target_name': 'debug_message',
1143 'type': 'executable', 1158 'type': 'executable',
1144 'sources': [ 1159 'sources': [
1145 'debug_message.cc', 1160 'debug_message.cc',
1146 ], 1161 ],
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
1188 'base_unittests.isolate', 1203 'base_unittests.isolate',
1189 ], 1204 ],
1190 'sources': [ 1205 'sources': [
1191 'base_unittests.isolate', 1206 'base_unittests.isolate',
1192 ], 1207 ],
1193 }, 1208 },
1194 ], 1209 ],
1195 }], 1210 }],
1196 ], 1211 ],
1197 } 1212 }
OLDNEW
« no previous file with comments | « base/android/javatests/src/org/chromium/base/ObserverListTest.java ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698