OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 6 'conditions': [ |
7 ['OS != "ios"', { | 7 ['OS != "ios"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'components_unittests', | 10 'target_name': 'components_unittests', |
11 'type': '<(gtest_target_type)', | 11 'type': '<(gtest_target_type)', |
12 'sources': [ | 12 'sources': [ |
13 'auto_login_parser/auto_login_parser_unittest.cc', | 13 'auto_login_parser/auto_login_parser_unittest.cc', |
| 14 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
| 15 'webdata/encryptor/encryptor_unittest.cc', |
14 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | 16 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
15 'test/run_all_unittests.cc', | 17 'test/run_all_unittests.cc', |
16 'visitedlink/test/visitedlink_unittest.cc', | 18 'visitedlink/test/visitedlink_unittest.cc', |
17 ], | 19 ], |
18 'include_dirs': [ | 20 'include_dirs': [ |
19 '..', | 21 '..', |
20 ], | 22 ], |
21 'dependencies': [ | 23 'dependencies': [ |
22 '../base/base.gyp:test_support_base', | 24 '../base/base.gyp:test_support_base', |
23 '../testing/gmock.gyp:gmock', | 25 '../testing/gmock.gyp:gmock', |
24 '../testing/gtest.gyp:gtest', | 26 '../testing/gtest.gyp:gtest', |
25 | 27 |
26 # Dependencies of auto_login_parser | 28 # Dependencies of auto_login_parser |
27 'components.gyp:auto_login_parser', | 29 'auto_login_parser', |
| 30 |
| 31 # Dependencies of encryptor |
| 32 'encryptor', |
28 | 33 |
29 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 34 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
30 '../content/content.gyp:test_support_content', | 35 '../content/content.gyp:test_support_content', |
31 '../skia/skia.gyp:skia', | 36 '../skia/skia.gyp:skia', |
32 'navigation_interception', | 37 'navigation_interception', |
33 | 38 |
34 # Dependencies of visitedlink | 39 # Dependencies of visitedlink |
35 'components.gyp:visitedlink_browser', | 40 'visitedlink_browser', |
36 'components.gyp:visitedlink_renderer', | 41 'visitedlink_renderer', |
37 '../content/content_resources.gyp:content_resources', | 42 '../content/content_resources.gyp:content_resources', |
38 ], | 43 ], |
39 'conditions': [ | 44 'conditions': [ |
40 ['OS == "android" and gtest_target_type == "shared_library"', { | 45 ['OS == "android" and gtest_target_type == "shared_library"', { |
41 'dependencies': [ | 46 'dependencies': [ |
42 '../testing/android/native_test.gyp:native_test_native_code', | 47 '../testing/android/native_test.gyp:native_test_native_code', |
43 ] | 48 ] |
44 }], | 49 }], |
45 ['OS=="win" and win_use_allocator_shim==1', { | 50 ['OS=="win" and win_use_allocator_shim==1', { |
46 'dependencies': [ | 51 'dependencies': [ |
(...skipping 19 matching lines...) Expand all Loading... |
66 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 71 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
67 }, | 72 }, |
68 'includes': [ '../build/apk_test.gypi' ], | 73 'includes': [ '../build/apk_test.gypi' ], |
69 }, | 74 }, |
70 ], | 75 ], |
71 }], | 76 }], |
72 ], | 77 ], |
73 }], | 78 }], |
74 ], | 79 ], |
75 } | 80 } |
OLD | NEW |