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

Side by Side Diff: sync/sync_tests.gypi

Issue 11308030: Use _target_name instead of package_name for java*.gypi (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@apk_jar
Patch Set: And fix android_webview_test_apk Created 7 years, 10 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # Test support files for the 'sync_core' target. 7 # Test support files for the 'sync_core' target.
8 { 8 {
9 'target_name': 'test_support_sync_core', 9 'target_name': 'test_support_sync_core',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 ], 561 ],
562 }, 562 },
563 ], 563 ],
564 }], 564 }],
565 ['OS == "android"', { 565 ['OS == "android"', {
566 'targets': [ 566 'targets': [
567 { 567 {
568 'target_name': 'sync_java', 568 'target_name': 'sync_java',
569 'type': 'none', 569 'type': 'none',
570 'variables': { 570 'variables': {
571 'package_name': 'sync',
572 'java_in_dir': '../sync/android/java', 571 'java_in_dir': '../sync/android/java',
573 }, 572 },
574 'dependencies': [ 573 'dependencies': [
575 '../base/base.gyp:base_java', 574 '../base/base.gyp:base_java',
576 '../net/net.gyp:net_java', 575 '../net/net.gyp:net_java',
577 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_javalib', 576 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_javalib',
578 '../third_party/guava/guava.gyp:guava_javalib', 577 '../third_party/guava/guava.gyp:guava_javalib',
579 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib', 578 '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
580 ], 579 ],
581 'includes': [ '../build/java.gypi' ], 580 'includes': [ '../build/java.gypi' ],
582 }, 581 },
583 { 582 {
584 'target_name': 'sync_javatests', 583 'target_name': 'sync_javatests',
585 'type': 'none', 584 'type': 'none',
586 'variables': { 585 'variables': {
587 'package_name': 'sync_javatests',
588 'java_in_dir': '../sync/android/javatests', 586 'java_in_dir': '../sync/android/javatests',
589 }, 587 },
590 'dependencies': [ 588 'dependencies': [
591 'sync_java', 589 'sync_java',
592 '../base/base.gyp:base_java_test_support', 590 '../base/base.gyp:base_java_test_support',
593 ], 591 ],
594 'includes': [ '../build/java.gypi' ], 592 'includes': [ '../build/java.gypi' ],
595 }, 593 },
596 ], 594 ],
597 }], 595 }],
(...skipping 11 matching lines...) Expand all
609 'variables': { 607 'variables': {
610 'test_suite_name': 'sync_unit_tests', 608 'test_suite_name': 'sync_unit_tests',
611 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 609 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
612 }, 610 },
613 'includes': [ '../build/apk_test.gypi' ], 611 'includes': [ '../build/apk_test.gypi' ],
614 }, 612 },
615 ], 613 ],
616 }], 614 }],
617 ], 615 ],
618 } 616 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698