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

Side by Side Diff: components/policy.gypi

Issue 23851022: Added new policy Schema classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 3 months 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
« no previous file with comments | « components/components_tests.gypi ('k') | components/policy/core/common/schema.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'policy_component', 8 'target_name': 'policy_component',
9 'type': '<(component)', 9 'type': '<(component)',
10 'dependencies': [ 10 'dependencies': [
11 '../base/base.gyp:base', 11 '../base/base.gyp:base',
12 'json_schema', 12 'json_schema',
13 ], 13 ],
14 'defines': [ 14 'defines': [
15 'POLICY_COMPONENT_IMPLEMENTATION', 15 'POLICY_COMPONENT_IMPLEMENTATION',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '..', 18 '..',
19 ], 19 ],
20 'conditions': [ 20 'conditions': [
21 ['configuration_policy==1', { 21 ['configuration_policy==1', {
22 'sources': [ 22 'sources': [
23 'policy/core/common/policy_schema.cc', 23 'policy/core/common/policy_schema.cc',
24 'policy/core/common/policy_schema.h', 24 'policy/core/common/policy_schema.h',
25 'policy/core/common/schema.cc',
26 'policy/core/common/schema.h',
27 'policy/core/common/schema_internal.h',
25 'policy/policy_export.h', 28 'policy/policy_export.h',
26 ], 29 ],
27 }, { # configuration_policy==0 30 }, { # configuration_policy==0
28 # The target 'policy_component' always exists. Later it will include 31 # The target 'policy_component' always exists. Later it will include
29 # some stubs when configuration_policy==0. For now this stub file is 32 # some stubs when configuration_policy==0. For now this stub file is
30 # compiled so that an output is produced, otherwise the shared build 33 # compiled so that an output is produced, otherwise the shared build
31 # breaks on iOS. 34 # breaks on iOS.
32 # TODO(joaodasilva): remove this comment and the temporary stub after 35 # TODO(joaodasilva): remove this comment and the temporary stub after
33 # moving one of the real stubs. http://crbug.com/271392 36 # moving one of the real stubs. http://crbug.com/271392
34 'sources': [ 37 'sources': [
35 'policy/stub_to_remove.cc', 38 'policy/stub_to_remove.cc',
36 ], 39 ],
37 }], 40 }],
38 ], 41 ],
39 }, 42 },
40 ], 43 ],
41 } 44 }
OLDNEW
« no previous file with comments | « components/components_tests.gypi ('k') | components/policy/core/common/schema.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698