| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { | 164 ['OS=="linux" and component=="shared_library" and linux_use_tcmalloc
==1', { |
| 165 'dependencies': [ | 165 'dependencies': [ |
| 166 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 166 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
| 167 ], | 167 ], |
| 168 'link_settings': { | 168 'link_settings': { |
| 169 'ldflags': ['-rdynamic'], | 169 'ldflags': ['-rdynamic'], |
| 170 }, | 170 }, |
| 171 }], | 171 }], |
| 172 ['configuration_policy==1', { | 172 ['configuration_policy==1', { |
| 173 'sources': [ | 173 'sources': [ |
| 174 'policy/core/common/policy_bundle_unittest.cc', |
| 174 'policy/core/common/policy_map_unittest.cc', | 175 'policy/core/common/policy_map_unittest.cc', |
| 175 'policy/core/common/schema_unittest.cc', | 176 'policy/core/common/schema_unittest.cc', |
| 176 ], | 177 ], |
| 177 }], | 178 }], |
| 178 ], | 179 ], |
| 179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 180 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 180 'msvs_disabled_warnings': [4267, ], | 181 'msvs_disabled_warnings': [4267, ], |
| 181 }, | 182 }, |
| 182 ], | 183 ], |
| 183 }], | 184 }], |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 'dependencies': [ | 295 'dependencies': [ |
| 295 '../base/allocator/allocator.gyp:allocator', | 296 '../base/allocator/allocator.gyp:allocator', |
| 296 ], | 297 ], |
| 297 }], | 298 }], |
| 298 ], | 299 ], |
| 299 }, | 300 }, |
| 300 ], | 301 ], |
| 301 }], | 302 }], |
| 302 ], | 303 ], |
| 303 } | 304 } |
| OLD | NEW |