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 'variables': { | 6 'variables': { |
7 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
10 'chromium_code': 1, | 10 'chromium_code': 1, |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 ], | 171 ], |
172 'link_settings': { | 172 'link_settings': { |
173 'ldflags': ['-rdynamic'], | 173 'ldflags': ['-rdynamic'], |
174 }, | 174 }, |
175 }], | 175 }], |
176 ['configuration_policy==1', { | 176 ['configuration_policy==1', { |
177 'dependencies': [ | 177 'dependencies': [ |
178 'components.gyp:policy_component_test_support', | 178 'components.gyp:policy_component_test_support', |
179 ], | 179 ], |
180 'sources': [ | 180 'sources': [ |
| 181 'policy/core/common/async_policy_provider_unittest.cc', |
181 'policy/core/common/policy_bundle_unittest.cc', | 182 'policy/core/common/policy_bundle_unittest.cc', |
182 'policy/core/common/policy_map_unittest.cc', | 183 'policy/core/common/policy_map_unittest.cc', |
183 'policy/core/common/registry_dict_win_unittest.cc', | 184 'policy/core/common/registry_dict_win_unittest.cc', |
184 'policy/core/common/schema_map_unittest.cc', | 185 'policy/core/common/schema_map_unittest.cc', |
185 'policy/core/common/schema_registry_unittest.cc', | 186 'policy/core/common/schema_registry_unittest.cc', |
186 'policy/core/common/schema_unittest.cc', | 187 'policy/core/common/schema_unittest.cc', |
187 ], | 188 ], |
| 189 'conditions': [ |
| 190 ['OS=="android"', { |
| 191 'sources!': [ |
| 192 'policy/core/common/async_policy_provider_unittest.cc', |
| 193 ], |
| 194 }], |
| 195 ], |
188 }], | 196 }], |
189 ], | 197 ], |
190 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 198 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
191 'msvs_disabled_warnings': [4267, ], | 199 'msvs_disabled_warnings': [4267, ], |
192 }, | 200 }, |
193 ], | 201 ], |
194 }], | 202 }], |
195 ['OS != "ios" and android_webview_build == 0', { | 203 ['OS != "ios" and android_webview_build == 0', { |
196 'targets': [ | 204 'targets': [ |
197 { | 205 { |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 'dependencies': [ | 313 'dependencies': [ |
306 '../base/allocator/allocator.gyp:allocator', | 314 '../base/allocator/allocator.gyp:allocator', |
307 ], | 315 ], |
308 }], | 316 }], |
309 ], | 317 ], |
310 }, | 318 }, |
311 ], | 319 ], |
312 }], | 320 }], |
313 ], | 321 ], |
314 } | 322 } |
OLD | NEW |