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 { | 8 { |
9 'target_name': 'test_support_sync_core', | 9 'target_name': 'test_support_sync_core', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 '../base/base.gyp:base', | 490 '../base/base.gyp:base', |
491 '../net/net.gyp:net', | 491 '../net/net.gyp:net', |
492 ], | 492 ], |
493 'sources': [ | 493 'sources': [ |
494 'test/accounts_client/test_accounts_client.cc', | 494 'test/accounts_client/test_accounts_client.cc', |
495 'test/accounts_client/test_accounts_client.h', | 495 'test/accounts_client/test_accounts_client.h', |
496 'test/accounts_client/url_request_context_getter.cc', | 496 'test/accounts_client/url_request_context_getter.cc', |
497 'test/accounts_client/url_request_context_getter.h', | 497 'test/accounts_client/url_request_context_getter.h', |
498 ], | 498 ], |
499 }, | 499 }, |
500 | 500 |
501 # The Sync end-to-end (and associated infrastructure) tests. | 501 # The Sync end-to-end (and associated infrastructure) tests. |
502 { | 502 { |
503 'target_name': 'sync_endtoend_tests', | 503 'target_name': 'sync_endtoend_tests', |
504 'type': '<(gtest_target_type)', | 504 'type': '<(gtest_target_type)', |
505 'dependencies': [ | 505 'dependencies': [ |
506 '../base/base.gyp:run_all_unittests', | 506 '../base/base.gyp:run_all_unittests', |
507 '../build/temp_gyp/googleurl.gyp:googleurl', | |
508 '../testing/gmock.gyp:gmock', | 507 '../testing/gmock.gyp:gmock', |
509 '../testing/gtest.gyp:gtest', | 508 '../testing/gtest.gyp:gtest', |
| 509 '../url/url.gyp:url_lib', |
510 'test_support_accounts_client', | 510 'test_support_accounts_client', |
511 ], | 511 ], |
512 'sources': [ | 512 'sources': [ |
513 'test/accounts_client/test_accounts_client_unittest.cc', | 513 'test/accounts_client/test_accounts_client_unittest.cc', |
514 ], | 514 ], |
515 }, | 515 }, |
516 | 516 |
517 ], | 517 ], |
518 'conditions': [ | 518 'conditions': [ |
519 ['OS != "ios"', { | 519 ['OS != "ios"', { |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 'variables': { | 641 'variables': { |
642 'test_suite_name': 'sync_unit_tests', | 642 'test_suite_name': 'sync_unit_tests', |
643 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 643 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
644 }, | 644 }, |
645 'includes': [ '../build/apk_test.gypi' ], | 645 'includes': [ '../build/apk_test.gypi' ], |
646 }, | 646 }, |
647 ], | 647 ], |
648 }], | 648 }], |
649 ], | 649 ], |
650 } | 650 } |
OLD | NEW |