Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: components/components_tests.gyp

Issue 78823004: Move PolicyBundle into components/policy/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase on master Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698