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_map_unittest.cc', |
174 'policy/core/common/schema_unittest.cc', | 175 'policy/core/common/schema_unittest.cc', |
175 ], | 176 ], |
176 }], | 177 }], |
177 ], | 178 ], |
178 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
179 'msvs_disabled_warnings': [4267, ], | 180 'msvs_disabled_warnings': [4267, ], |
180 }, | 181 }, |
181 ], | 182 ], |
182 }], | 183 }], |
183 ['OS != "ios" and android_webview_build == 0', { | 184 ['OS != "ios" and android_webview_build == 0', { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 'dependencies': [ | 294 'dependencies': [ |
294 '../base/allocator/allocator.gyp:allocator', | 295 '../base/allocator/allocator.gyp:allocator', |
295 ], | 296 ], |
296 }], | 297 }], |
297 ], | 298 ], |
298 }, | 299 }, |
299 ], | 300 ], |
300 }], | 301 }], |
301 ], | 302 ], |
302 } | 303 } |
OLD | NEW |