| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 # library because the unit test files have to be compiled directly | 382 # library because the unit test files have to be compiled directly |
| 383 # into the executable, so we push the target files to the | 383 # into the executable, so we push the target files to the |
| 384 # depending executable target via direct_dependent_settings. | 384 # depending executable target via direct_dependent_settings. |
| 385 { | 385 { |
| 386 'target_name': 'sync_internal_api_tests', | 386 'target_name': 'sync_internal_api_tests', |
| 387 'type': 'none', | 387 'type': 'none', |
| 388 # We only want unit test executables to include this target. | 388 # We only want unit test executables to include this target. |
| 389 'suppress_wildcard': 1, | 389 'suppress_wildcard': 1, |
| 390 'dependencies': [ | 390 'dependencies': [ |
| 391 '../base/base.gyp:base', | 391 '../base/base.gyp:base', |
| 392 '../google_apis/google_apis.gyp:google_apis_test_support', | |
| 393 '../net/net.gyp:net', | 392 '../net/net.gyp:net', |
| 394 '../net/net.gyp:net_test_support', | 393 '../net/net.gyp:net_test_support', |
| 395 '../testing/gmock.gyp:gmock', | 394 '../testing/gmock.gyp:gmock', |
| 396 '../testing/gtest.gyp:gtest', | 395 '../testing/gtest.gyp:gtest', |
| 397 'sync', | 396 'sync', |
| 398 'test_support_sync_internal_api', | 397 'test_support_sync_internal_api', |
| 399 ], | 398 ], |
| 400 # Propagate all dependencies since the actual compilation | 399 # Propagate all dependencies since the actual compilation |
| 401 # happens in the dependents. | 400 # happens in the dependents. |
| 402 'export_dependent_settings': [ | 401 'export_dependent_settings': [ |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 ], | 613 ], |
| 615 'variables': { | 614 'variables': { |
| 616 'test_suite_name': 'sync_unit_tests', | 615 'test_suite_name': 'sync_unit_tests', |
| 617 }, | 616 }, |
| 618 'includes': [ '../build/apk_test.gypi' ], | 617 'includes': [ '../build/apk_test.gypi' ], |
| 619 }, | 618 }, |
| 620 ], | 619 ], |
| 621 }], | 620 }], |
| 622 ], | 621 ], |
| 623 } | 622 } |
| OLD | NEW |