| 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 'target_name': 'invalidation_jni_headers', | 240 'target_name': 'invalidation_jni_headers', |
| 241 'type': 'none', | 241 'type': 'none', |
| 242 'sources': [ | 242 'sources': [ |
| 243 'invalidation/impl/android/java/src/org/chromium/components/invalida
tion/InvalidationService.java', | 243 'invalidation/impl/android/java/src/org/chromium/components/invalida
tion/InvalidationService.java', |
| 244 ], | 244 ], |
| 245 'variables': { | 245 'variables': { |
| 246 'jni_gen_package': 'components/invalidation', | 246 'jni_gen_package': 'components/invalidation', |
| 247 }, | 247 }, |
| 248 'includes': [ '../build/jni_generator.gypi' ], | 248 'includes': [ '../build/jni_generator.gypi' ], |
| 249 }, | 249 }, |
| 250 { |
| 251 'target_name': 'components_invalidation_impl_junit_tests', |
| 252 'type': 'none', |
| 253 'dependencies': [ |
| 254 '../testing/android/junit/junit_test.gyp:junit_test_support', |
| 255 ], |
| 256 'variables': { |
| 257 'main_class': 'org.chromium.testing.local.JunitTestMain', |
| 258 'src_paths': [ |
| 259 '../testing/android/junit/DummyTest.java', |
| 260 ], |
| 261 'wrapper_script_name': 'helper/<(_target_name)', |
| 262 }, |
| 263 'includes': [ '../build/host_jar.gypi' ], |
| 264 }, |
| 250 ], | 265 ], |
| 251 }, | 266 }, |
| 252 ], | 267 ], |
| 253 ], | 268 ], |
| 254 } | 269 } |
| OLD | NEW |