| 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', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 # Dependencies of autofill | 36 # Dependencies of autofill |
| 37 'autofill_core_browser', | 37 'autofill_core_browser', |
| 38 | 38 |
| 39 # Dependencies of browser_context_keyed_service | 39 # Dependencies of browser_context_keyed_service |
| 40 'browser_context_keyed_service', | 40 'browser_context_keyed_service', |
| 41 | 41 |
| 42 # Dependencies of encryptor | 42 # Dependencies of encryptor |
| 43 'encryptor', | 43 'encryptor', |
| 44 | 44 |
| 45 # Dependencies of intercept_navigation_resource_throttle_unittest.cc | 45 # Dependencies of intercept_navigation_resource_throttle_unittest.cc |
| 46 '../content/content_shell_and_tests.gyp:test_support_content', | 46 '../content/content.gyp:test_support_content', |
| 47 '../skia/skia.gyp:skia', | 47 '../skia/skia.gyp:skia', |
| 48 'navigation_interception', | 48 'navigation_interception', |
| 49 | 49 |
| 50 # Dependencies of sessions | 50 # Dependencies of sessions |
| 51 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 51 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 52 'sessions', | 52 'sessions', |
| 53 'sessions_test_support', | 53 'sessions_test_support', |
| 54 | 54 |
| 55 # Dependencies of visitedlink | 55 # Dependencies of visitedlink |
| 56 'visitedlink_browser', | 56 'visitedlink_browser', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 86 ], | 86 ], |
| 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 88 'msvs_disabled_warnings': [4267, ], | 88 'msvs_disabled_warnings': [4267, ], |
| 89 }, | 89 }, |
| 90 { | 90 { |
| 91 'target_name': 'components_perftests', | 91 'target_name': 'components_perftests', |
| 92 'type': '<(gtest_target_type)', | 92 'type': '<(gtest_target_type)', |
| 93 'dependencies': [ | 93 'dependencies': [ |
| 94 '../base/base.gyp:base', | 94 '../base/base.gyp:base', |
| 95 '../base/base.gyp:test_support_perf', | 95 '../base/base.gyp:test_support_perf', |
| 96 '../content/content_shell_and_tests.gyp:test_support_content', | 96 '../content/content.gyp:test_support_content', |
| 97 '../testing/gtest.gyp:gtest', | 97 '../testing/gtest.gyp:gtest', |
| 98 '../ui/compositor/compositor.gyp:compositor', | 98 '../ui/compositor/compositor.gyp:compositor', |
| 99 'visitedlink_browser', | 99 'visitedlink_browser', |
| 100 ], | 100 ], |
| 101 'include_dirs': [ | 101 'include_dirs': [ |
| 102 '..', | 102 '..', |
| 103 ], | 103 ], |
| 104 'sources': [ | 104 'sources': [ |
| 105 'visitedlink/test/visitedlink_perftest.cc', | 105 'visitedlink/test/visitedlink_perftest.cc', |
| 106 ], | 106 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 129 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
| 130 }, | 130 }, |
| 131 'includes': [ '../build/apk_test.gypi' ], | 131 'includes': [ '../build/apk_test.gypi' ], |
| 132 }, | 132 }, |
| 133 ], | 133 ], |
| 134 }], | 134 }], |
| 135 ], | 135 ], |
| 136 }], | 136 }], |
| 137 ], | 137 ], |
| 138 } | 138 } |
| OLD | NEW |