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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { | 182 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { |
183 'dependencies': [ | 183 'dependencies': [ |
184 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 184 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
185 ], | 185 ], |
186 'link_settings': { | 186 'link_settings': { |
187 'ldflags': ['-rdynamic'], | 187 'ldflags': ['-rdynamic'], |
188 }, | 188 }, |
189 }], | 189 }], |
190 ['configuration_policy==1', { | 190 ['configuration_policy==1', { |
191 'dependencies': [ | 191 'dependencies': [ |
192 # TODO(joaodasilva): remove this dependency. This is needed to | |
193 # get the include path for policy_constants.h. | |
194 '../chrome/app/policy/cloud_policy_codegen.gyp:policy_test_suppo
rt', | |
195 'components.gyp:policy_component_test_support', | 192 'components.gyp:policy_component_test_support', |
| 193 'components.gyp:policy_test_support', |
196 ], | 194 ], |
197 'sources': [ | 195 'sources': [ |
198 'policy/core/browser/policy_header_io_helper_unittest.cc', | 196 'policy/core/browser/policy_header_io_helper_unittest.cc', |
199 'policy/core/common/async_policy_provider_unittest.cc', | 197 'policy/core/common/async_policy_provider_unittest.cc', |
200 'policy/core/common/cloud/cloud_policy_client_unittest.cc', | 198 'policy/core/common/cloud/cloud_policy_client_unittest.cc', |
201 'policy/core/common/cloud/cloud_policy_core_unittest.cc', | 199 'policy/core/common/cloud/cloud_policy_core_unittest.cc', |
202 'policy/core/common/cloud/cloud_policy_manager_unittest.cc', | 200 'policy/core/common/cloud/cloud_policy_manager_unittest.cc', |
203 'policy/core/common/cloud/cloud_policy_refresh_scheduler_unittes
t.cc', | 201 'policy/core/common/cloud/cloud_policy_refresh_scheduler_unittes
t.cc', |
204 'policy/core/common/cloud/cloud_policy_service_unittest.cc', | 202 'policy/core/common/cloud/cloud_policy_service_unittest.cc', |
205 'policy/core/common/cloud/cloud_policy_validator_unittest.cc', | 203 'policy/core/common/cloud/cloud_policy_validator_unittest.cc', |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 'dependencies': [ | 366 'dependencies': [ |
369 '../base/allocator/allocator.gyp:allocator', | 367 '../base/allocator/allocator.gyp:allocator', |
370 ], | 368 ], |
371 }], | 369 }], |
372 ], | 370 ], |
373 }, | 371 }, |
374 ], | 372 ], |
375 }], | 373 }], |
376 ], | 374 ], |
377 } | 375 } |
OLD | NEW |