OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 source_set("common") { | 7 source_set("common") { |
8 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] | 8 defines = [ "POLICY_COMPONENT_IMPLEMENTATION" ] |
9 | 9 |
10 if (enable_configuration_policy) { | 10 if (enable_configuration_policy) { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
63 "cloud/user_policy_request_context.h", | 63 "cloud/user_policy_request_context.h", |
64 "async_policy_loader.cc", | 64 "async_policy_loader.cc", |
65 "async_policy_loader.h", | 65 "async_policy_loader.h", |
66 "async_policy_provider.cc", | 66 "async_policy_provider.cc", |
67 "async_policy_provider.h", | 67 "async_policy_provider.h", |
68 "config_dir_policy_loader.cc", | 68 "config_dir_policy_loader.cc", |
69 "config_dir_policy_loader.h", | 69 "config_dir_policy_loader.h", |
70 "configuration_policy_provider.cc", | 70 "configuration_policy_provider.cc", |
71 "configuration_policy_provider.h", | 71 "configuration_policy_provider.h", |
72 "external_data_fetcher.cc", | 72 "external_data_fetcher.cc", |
73 "../../policy_export.h", | |
Andrew T Wilson (Slow)
2014/12/05 15:21:04
Why is this moved here?
Mattias Nissler (ping if slow)
2014/12/05 15:24:49
Automated sort didn't sort. Reverted.
| |
73 "external_data_fetcher.h", | 74 "external_data_fetcher.h", |
74 "external_data_manager.h", | 75 "external_data_manager.h", |
75 "forwarding_policy_provider.cc", | |
76 "forwarding_policy_provider.h", | |
77 "mac_util.cc", | 76 "mac_util.cc", |
78 "mac_util.h", | 77 "mac_util.h", |
79 "policy_bundle.cc", | 78 "policy_bundle.cc", |
80 "policy_bundle.h", | 79 "policy_bundle.h", |
81 "policy_details.h", | 80 "policy_details.h", |
81 "policy_load_status.cc", | |
82 "policy_load_status.h", | |
82 "policy_loader_ios.h", | 83 "policy_loader_ios.h", |
83 "policy_loader_ios.mm", | 84 "policy_loader_ios.mm", |
84 "policy_loader_mac.cc", | 85 "policy_loader_mac.cc", |
85 "policy_loader_mac.h", | 86 "policy_loader_mac.h", |
86 "policy_loader_win.cc", | 87 "policy_loader_win.cc", |
87 "policy_loader_win.h", | 88 "policy_loader_win.h", |
88 "policy_load_status.cc", | |
89 "policy_load_status.h", | |
90 "policy_map.cc", | 89 "policy_map.cc", |
91 "policy_map.h", | 90 "policy_map.h", |
92 "policy_namespace.cc", | 91 "policy_namespace.cc", |
93 "policy_namespace.h", | 92 "policy_namespace.h", |
94 "policy_pref_names.cc", | 93 "policy_pref_names.cc", |
95 "policy_pref_names.h", | 94 "policy_pref_names.h", |
96 "policy_provider_android.cc", | 95 "policy_provider_android.cc", |
97 "policy_provider_android.h", | 96 "policy_provider_android.h", |
98 "policy_provider_android_delegate.h", | 97 "policy_provider_android_delegate.h", |
99 "policy_service.cc", | 98 "policy_service.cc", |
(...skipping 11 matching lines...) Expand all Loading... | |
111 "preg_parser_win.h", | 110 "preg_parser_win.h", |
112 "registry_dict_win.cc", | 111 "registry_dict_win.cc", |
113 "registry_dict_win.h", | 112 "registry_dict_win.h", |
114 "schema.cc", | 113 "schema.cc", |
115 "schema.h", | 114 "schema.h", |
116 "schema_internal.h", | 115 "schema_internal.h", |
117 "schema_map.cc", | 116 "schema_map.cc", |
118 "schema_map.h", | 117 "schema_map.h", |
119 "schema_registry.cc", | 118 "schema_registry.cc", |
120 "schema_registry.h", | 119 "schema_registry.h", |
121 "../../policy_export.h", | 120 "schema_registry_tracking_policy_provider.cc", |
121 "schema_registry_tracking_policy_provider.h", | |
122 ] | 122 ] |
123 | 123 |
124 deps = [ | 124 deps = [ |
125 "//base:prefs", | 125 "//base:prefs", |
126 "//base/third_party/dynamic_annotations", | 126 "//base/third_party/dynamic_annotations", |
127 "//components/json_schema", | 127 "//components/json_schema", |
128 "//components/policy", | 128 "//components/policy", |
129 "//components/policy/proto", | 129 "//components/policy/proto", |
130 "//google_apis", | 130 "//google_apis", |
131 "//net", | 131 "//net", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
190 "policy_service.cc", | 190 "policy_service.cc", |
191 "policy_service.h", | 191 "policy_service.h", |
192 "policy_service_stub.cc", | 192 "policy_service_stub.cc", |
193 "policy_service_stub.h", | 193 "policy_service_stub.h", |
194 ] | 194 ] |
195 deps = [ | 195 deps = [ |
196 "//base", | 196 "//base", |
197 ] | 197 ] |
198 } | 198 } |
199 } | 199 } |
OLD | NEW |