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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 # library because the unit test files have to be compiled directly | 280 # library because the unit test files have to be compiled directly |
281 # into the executable, so we push the target files to the | 281 # into the executable, so we push the target files to the |
282 # depending executable target via direct_dependent_settings. | 282 # depending executable target via direct_dependent_settings. |
283 { | 283 { |
284 'target_name': 'sync_notifier_tests', | 284 'target_name': 'sync_notifier_tests', |
285 'type': 'none', | 285 'type': 'none', |
286 # We only want unit test executables to include this target. | 286 # We only want unit test executables to include this target. |
287 'suppress_wildcard': 1, | 287 'suppress_wildcard': 1, |
288 'dependencies': [ | 288 'dependencies': [ |
289 '../base/base.gyp:base', | 289 '../base/base.gyp:base', |
| 290 '../google_apis/google_apis.gyp:google_apis', |
290 '../jingle/jingle.gyp:notifier_test_util', | 291 '../jingle/jingle.gyp:notifier_test_util', |
291 '../net/net.gyp:net_test_support', | 292 '../net/net.gyp:net_test_support', |
292 '../testing/gmock.gyp:gmock', | 293 '../testing/gmock.gyp:gmock', |
293 '../testing/gtest.gyp:gtest', | 294 '../testing/gtest.gyp:gtest', |
294 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 295 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
295 '../third_party/libjingle/libjingle.gyp:libjingle', | 296 '../third_party/libjingle/libjingle.gyp:libjingle', |
296 'sync', | 297 'sync', |
297 'test_support_sync_notifier', | 298 'test_support_sync_notifier', |
298 ], | 299 ], |
299 # Propagate all dependencies since the actual compilation | 300 # Propagate all dependencies since the actual compilation |
300 # happens in the dependents. | 301 # happens in the dependents. |
301 'export_dependent_settings': [ | 302 'export_dependent_settings': [ |
302 '../base/base.gyp:base', | 303 '../base/base.gyp:base', |
| 304 '../google_apis/google_apis.gyp:google_apis', |
303 '../jingle/jingle.gyp:notifier_test_util', | 305 '../jingle/jingle.gyp:notifier_test_util', |
304 '../net/net.gyp:net_test_support', | 306 '../net/net.gyp:net_test_support', |
305 '../testing/gmock.gyp:gmock', | 307 '../testing/gmock.gyp:gmock', |
306 '../testing/gtest.gyp:gtest', | 308 '../testing/gtest.gyp:gtest', |
307 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', | 309 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n', |
308 '../third_party/libjingle/libjingle.gyp:libjingle', | 310 '../third_party/libjingle/libjingle.gyp:libjingle', |
309 'sync', | 311 'sync', |
310 'test_support_sync_notifier', | 312 'test_support_sync_notifier', |
311 ], | 313 ], |
312 'direct_dependent_settings': { | 314 'direct_dependent_settings': { |
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
623 'variables': { | 625 'variables': { |
624 'test_suite_name': 'sync_unit_tests', | 626 'test_suite_name': 'sync_unit_tests', |
625 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 627 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
626 }, | 628 }, |
627 'includes': [ '../build/apk_test.gypi' ], | 629 'includes': [ '../build/apk_test.gypi' ], |
628 }, | 630 }, |
629 ], | 631 ], |
630 }], | 632 }], |
631 ], | 633 ], |
632 } | 634 } |
OLD | NEW |