| OLD | NEW |
| 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 # GN version: //sync:test_support_sync_core | 8 # GN version: //sync:test_support_sync_core |
| 9 { | 9 { |
| 10 'target_name': 'test_support_sync_core', | 10 'target_name': 'test_support_sync_core', |
| (...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 'type': 'none', | 442 'type': 'none', |
| 443 'variables': { | 443 'variables': { |
| 444 'package_name': 'sync_java_test_support', | 444 'package_name': 'sync_java_test_support', |
| 445 'java_in_dir': '../sync/test/android/javatests', | 445 'java_in_dir': '../sync/test/android/javatests', |
| 446 }, | 446 }, |
| 447 'dependencies': [ | 447 'dependencies': [ |
| 448 'sync_java', | 448 'sync_java', |
| 449 ], | 449 ], |
| 450 'includes': [ '../build/java.gypi' ], | 450 'includes': [ '../build/java.gypi' ], |
| 451 }, | 451 }, |
| 452 { |
| 453 'target_name': 'sync_fake_server_jni_headers', |
| 454 'type': 'none', |
| 455 'sources': [ |
| 456 '../sync/test/android/javatests/src/org/chromium/sync/test/util/Fake
ServerHelper.java', |
| 457 ], |
| 458 'variables': { |
| 459 'jni_gen_package': 'sync/test/fake_server', |
| 460 'jni_generator_ptr_type': 'long', |
| 461 }, |
| 462 'includes': [ '../build/jni_generator.gypi' ], |
| 463 }, |
| 464 { |
| 465 'target_name': 'test_support_sync_fake_server_android', |
| 466 'type': 'static_library', |
| 467 'dependencies': [ |
| 468 'sync_fake_server_jni_headers', |
| 469 'test_support_sync_fake_server', |
| 470 '../base/base.gyp:base', |
| 471 ], |
| 472 'sources': [ |
| 473 'test/fake_server/android/fake_server_helper_android.cc', |
| 474 'test/fake_server/android/fake_server_helper_android.h', |
| 475 ], |
| 476 }, |
| 452 ], | 477 ], |
| 453 }], | 478 }], |
| 454 ['OS == "android"', { | 479 ['OS == "android"', { |
| 455 'targets': [ | 480 'targets': [ |
| 456 { | 481 { |
| 457 'target_name': 'sync_unit_tests_apk', | 482 'target_name': 'sync_unit_tests_apk', |
| 458 'type': 'none', | 483 'type': 'none', |
| 459 'dependencies': [ | 484 'dependencies': [ |
| 460 'sync_unit_tests', | 485 'sync_unit_tests', |
| 461 ], | 486 ], |
| 462 'variables': { | 487 'variables': { |
| 463 'test_suite_name': 'sync_unit_tests', | 488 'test_suite_name': 'sync_unit_tests', |
| 464 }, | 489 }, |
| 465 'includes': [ '../build/apk_test.gypi' ], | 490 'includes': [ '../build/apk_test.gypi' ], |
| 466 }, | 491 }, |
| 467 ], | 492 ], |
| 468 }], | 493 }], |
| 469 ], | 494 ], |
| 470 } | 495 } |
| OLD | NEW |