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 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', |
| 15 'sessions/serialized_navigation_entry_unittest.cc', |
| 16 'test/run_all_unittests.cc', |
| 17 'visitedlink/test/visitedlink_unittest.cc', |
14 'webdata/encryptor/encryptor_password_mac_unittest.cc', | 18 'webdata/encryptor/encryptor_password_mac_unittest.cc', |
15 'webdata/encryptor/encryptor_unittest.cc', | 19 'webdata/encryptor/encryptor_unittest.cc', |
16 'navigation_interception/intercept_navigation_resource_throttle_unit
test.cc', | |
17 'test/run_all_unittests.cc', | |
18 'visitedlink/test/visitedlink_unittest.cc', | |
19 'zip/zip_reader_unittest.cc', | 20 'zip/zip_reader_unittest.cc', |
20 'zip/zip_unittest.cc', | 21 'zip/zip_unittest.cc', |
21 ], | 22 ], |
22 'include_dirs': [ | 23 'include_dirs': [ |
23 '..', | 24 '..', |
24 ], | 25 ], |
25 'dependencies': [ | 26 'dependencies': [ |
26 '../base/base.gyp:test_support_base', | 27 '../base/base.gyp:test_support_base', |
27 '../testing/gmock.gyp:gmock', | 28 '../testing/gmock.gyp:gmock', |
28 '../testing/gtest.gyp:gtest', | 29 '../testing/gtest.gyp:gtest', |
29 | 30 |
30 # Dependencies of auto_login_parser | 31 # Dependencies of auto_login_parser |
31 'auto_login_parser', | 32 'auto_login_parser', |
32 | 33 |
33 # Dependencies of encryptor | 34 # Dependencies of encryptor |
34 'encryptor', | 35 'encryptor', |
35 | 36 |
36 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 37 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
37 '../content/content.gyp:test_support_content', | 38 '../content/content.gyp:test_support_content', |
38 '../skia/skia.gyp:skia', | 39 '../skia/skia.gyp:skia', |
39 'navigation_interception', | 40 'navigation_interception', |
40 | 41 |
| 42 # Dependencies of sessions |
| 43 '../sync/sync.gyp:sync', |
| 44 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 45 'sessions', |
| 46 'sessions_test_support', |
| 47 |
41 # Dependencies of visitedlink | 48 # Dependencies of visitedlink |
42 'visitedlink_browser', | 49 'visitedlink_browser', |
43 'visitedlink_renderer', | 50 'visitedlink_renderer', |
44 '../content/content_resources.gyp:content_resources', | 51 '../content/content_resources.gyp:content_resources', |
45 | 52 |
46 # Dependencies of zip | 53 # Dependencies of zip |
47 'zip', | 54 'zip', |
48 ], | 55 ], |
49 'conditions': [ | 56 'conditions': [ |
50 ['OS == "android" and gtest_target_type == "shared_library"', { | 57 ['OS == "android" and gtest_target_type == "shared_library"', { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 110 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
104 }, | 111 }, |
105 'includes': [ '../build/apk_test.gypi' ], | 112 'includes': [ '../build/apk_test.gypi' ], |
106 }, | 113 }, |
107 ], | 114 ], |
108 }], | 115 }], |
109 ], | 116 ], |
110 }], | 117 }], |
111 ], | 118 ], |
112 } | 119 } |
OLD | NEW |