1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'policy_component',
'type': '<(component)',
'dependencies': [
'../base/base.gyp:base',
'json_schema',
],
'defines': [
'POLICY_COMPONENT_IMPLEMENTATION',
],
'include_dirs': [
'..',
],
'conditions': [
['configuration_policy==1', {
'sources': [
'policy/core/common/policy_namespace.cc',
'policy/core/common/policy_namespace.h',
'policy/core/common/policy_pref_names.cc',
'policy/core/common/policy_pref_names.h',
'policy/core/common/policy_switches.cc',
'policy/core/common/policy_switches.h',
'policy/core/common/schema.cc',
'policy/core/common/schema.h',
'policy/core/common/schema_internal.h',
'policy/policy_export.h',
],
}, { # configuration_policy==0
# Some of the policy code is always enabled, so that other parts of
# Chrome can always interface with the PolicyService without having
# to #ifdef on ENABLE_CONFIGURATION_POLICY.
'sources': [
'policy/core/common/policy_namespace.cc',
'policy/core/common/policy_namespace.h',
],
}],
],
},
],
}
|