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

Side by Side Diff: components/components_tests.gyp

Issue 108513011: Move chrome/app/policy into components/policy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no .xtb moves (REVIEW HERE) Created 7 years 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698