| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 # library because the unit test files have to be compiled directly | 397 # library because the unit test files have to be compiled directly |
| 398 # into the executable, so we push the target files to the | 398 # into the executable, so we push the target files to the |
| 399 # depending executable target via direct_dependent_settings. | 399 # depending executable target via direct_dependent_settings. |
| 400 { | 400 { |
| 401 'target_name': 'sync_internal_api_tests', | 401 'target_name': 'sync_internal_api_tests', |
| 402 'type': 'none', | 402 'type': 'none', |
| 403 # We only want unit test executables to include this target. | 403 # We only want unit test executables to include this target. |
| 404 'suppress_wildcard': 1, | 404 'suppress_wildcard': 1, |
| 405 'dependencies': [ | 405 'dependencies': [ |
| 406 '../base/base.gyp:base', | 406 '../base/base.gyp:base', |
| 407 '../google_apis/google_apis.gyp:google_apis_test_support', |
| 407 '../net/net.gyp:net', | 408 '../net/net.gyp:net', |
| 408 '../net/net.gyp:net_test_support', | 409 '../net/net.gyp:net_test_support', |
| 409 '../testing/gmock.gyp:gmock', | 410 '../testing/gmock.gyp:gmock', |
| 410 '../testing/gtest.gyp:gtest', | 411 '../testing/gtest.gyp:gtest', |
| 411 'sync', | 412 'sync', |
| 412 'test_support_sync_internal_api', | 413 'test_support_sync_internal_api', |
| 413 ], | 414 ], |
| 414 # Propagate all dependencies since the actual compilation | 415 # Propagate all dependencies since the actual compilation |
| 415 # happens in the dependents. | 416 # happens in the dependents. |
| 416 'export_dependent_settings': [ | 417 'export_dependent_settings': [ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 628 ], | 629 ], |
| 629 'variables': { | 630 'variables': { |
| 630 'test_suite_name': 'sync_unit_tests', | 631 'test_suite_name': 'sync_unit_tests', |
| 631 }, | 632 }, |
| 632 'includes': [ '../build/apk_test.gypi' ], | 633 'includes': [ '../build/apk_test.gypi' ], |
| 633 }, | 634 }, |
| 634 ], | 635 ], |
| 635 }], | 636 }], |
| 636 ], | 637 ], |
| 637 } | 638 } |
| OLD | NEW |