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