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

Side by Side Diff: components/invalidation.gypi

Issue 1905103002: 🐮 Add dummy junit targets so that GYP & GN have the same targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: forgot to add java file Created 4 years, 8 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
« no previous file with comments | « components/BUILD.gn ('k') | components/policy.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/policy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698