OLD | NEW |
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_bundle.cc', |
| 24 'policy/core/common/policy_bundle.h', |
23 'policy/core/common/external_data_fetcher.cc', | 25 'policy/core/common/external_data_fetcher.cc', |
24 'policy/core/common/external_data_fetcher.h', | 26 'policy/core/common/external_data_fetcher.h', |
25 'policy/core/common/external_data_manager.h', | 27 'policy/core/common/external_data_manager.h', |
26 'policy/core/common/policy_details.h', | 28 'policy/core/common/policy_details.h', |
27 'policy/core/common/policy_namespace.cc', | 29 'policy/core/common/policy_namespace.cc', |
28 'policy/core/common/policy_namespace.h', | 30 'policy/core/common/policy_namespace.h', |
29 'policy/core/common/policy_map.cc', | 31 'policy/core/common/policy_map.cc', |
30 'policy/core/common/policy_map.h', | 32 'policy/core/common/policy_map.h', |
31 'policy/core/common/policy_pref_names.cc', | 33 'policy/core/common/policy_pref_names.cc', |
32 'policy/core/common/policy_pref_names.h', | 34 'policy/core/common/policy_pref_names.h', |
(...skipping 16 matching lines...) Expand all Loading... |
49 'policy/core/common/policy_map.cc', | 51 'policy/core/common/policy_map.cc', |
50 'policy/core/common/policy_map.h', | 52 'policy/core/common/policy_map.h', |
51 'policy/core/common/policy_namespace.cc', | 53 'policy/core/common/policy_namespace.cc', |
52 'policy/core/common/policy_namespace.h', | 54 'policy/core/common/policy_namespace.h', |
53 ], | 55 ], |
54 }], | 56 }], |
55 ], | 57 ], |
56 }, | 58 }, |
57 ], | 59 ], |
58 } | 60 } |
OLD | NEW |