OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/invalidation/public | 8 # GN version: //components/invalidation/public |
9 'target_name': 'invalidation_public', | 9 'target_name': 'invalidation_public', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
217 'invalidation/impl/android/proto/serialized_invalidation.proto', | 217 'invalidation/impl/android/proto/serialized_invalidation.proto', |
218 ], | 218 ], |
219 'includes': [ '../build/protoc_java.gypi' ], | 219 'includes': [ '../build/protoc_java.gypi' ], |
220 }, | 220 }, |
221 { | 221 { |
222 'target_name': 'invalidation_javatests', | 222 'target_name': 'invalidation_javatests', |
223 'type': 'none', | 223 'type': 'none', |
224 'dependencies': [ | 224 'dependencies': [ |
225 'invalidation_java', | 225 'invalidation_java', |
226 '../base/base.gyp:base_java_test_support', | 226 '../base/base.gyp:base_java_test_support', |
227 '../content/content_shell_and_tests.gyp:content_java_test_support', | |
Nicolas Zea
2015/07/30 01:02:04
I don't think you can depend on content/ from comp
maxbogue
2015/07/30 21:15:15
I think it's fine for tests: https://code.google.c
| |
227 ], | 228 ], |
228 'variables': { | 229 'variables': { |
229 'java_in_dir': 'invalidation/impl/android/javatests', | 230 'java_in_dir': 'invalidation/impl/android/javatests', |
230 }, | 231 }, |
231 'includes': [ '../build/java.gypi' ], | 232 'includes': [ '../build/java.gypi' ], |
232 }, | 233 }, |
233 { | 234 { |
234 'target_name': 'invalidation_jni_headers', | 235 'target_name': 'invalidation_jni_headers', |
235 'type': 'none', | 236 'type': 'none', |
236 'sources': [ | 237 'sources': [ |
237 'invalidation/impl/android/java/src/org/chromium/components/invalida tion/InvalidationService.java', | 238 'invalidation/impl/android/java/src/org/chromium/components/invalida tion/InvalidationService.java', |
238 ], | 239 ], |
239 'variables': { | 240 'variables': { |
240 'jni_gen_package': 'components/invalidation', | 241 'jni_gen_package': 'components/invalidation', |
241 }, | 242 }, |
242 'includes': [ '../build/jni_generator.gypi' ], | 243 'includes': [ '../build/jni_generator.gypi' ], |
243 }, | 244 }, |
244 ], | 245 ], |
245 }, | 246 }, |
246 ], | 247 ], |
247 ], | 248 ], |
248 } | 249 } |
OLD | NEW |