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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { | 109 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { |
110 'dependencies': [ | 110 'dependencies': [ |
111 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 111 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
112 ], | 112 ], |
113 'link_settings': { | 113 'link_settings': { |
114 'ldflags': ['-rdynamic'], | 114 'ldflags': ['-rdynamic'], |
115 }, | 115 }, |
116 }], | 116 }], |
117 ['configuration_policy==1', { | 117 ['configuration_policy==1', { |
118 'sources': [ | 118 'sources': [ |
119 'policy/core/common/policy_schema_unittest.cc', | |
120 'policy/core/common/schema_unittest.cc', | 119 'policy/core/common/schema_unittest.cc', |
121 ], | 120 ], |
122 }], | 121 }], |
123 ], | 122 ], |
124 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
125 'msvs_disabled_warnings': [4267, ], | 124 'msvs_disabled_warnings': [4267, ], |
126 }, | 125 }, |
127 { | 126 { |
128 'target_name': 'components_perftests', | 127 'target_name': 'components_perftests', |
129 'type': '<(gtest_target_type)', | 128 'type': '<(gtest_target_type)', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | 165 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', |
167 }, | 166 }, |
168 'includes': [ '../build/apk_test.gypi' ], | 167 'includes': [ '../build/apk_test.gypi' ], |
169 }, | 168 }, |
170 ], | 169 ], |
171 }], | 170 }], |
172 ], | 171 ], |
173 }], | 172 }], |
174 ], | 173 ], |
175 } | 174 } |
OLD | NEW |