| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "external_data_fetcher.h", | 73 "external_data_fetcher.h", |
| 74 "external_data_manager.h", | 74 "external_data_manager.h", |
| 75 "forwarding_policy_provider.cc", | |
| 76 "forwarding_policy_provider.h", | |
| 77 "mac_util.cc", | 75 "mac_util.cc", |
| 78 "mac_util.h", | 76 "mac_util.h", |
| 79 "policy_bundle.cc", | 77 "policy_bundle.cc", |
| 80 "policy_bundle.h", | 78 "policy_bundle.h", |
| 81 "policy_details.h", | 79 "policy_details.h", |
| 80 "policy_load_status.cc", |
| 81 "policy_load_status.h", |
| 82 "policy_loader_ios.h", | 82 "policy_loader_ios.h", |
| 83 "policy_loader_ios.mm", | 83 "policy_loader_ios.mm", |
| 84 "policy_loader_mac.cc", | 84 "policy_loader_mac.cc", |
| 85 "policy_loader_mac.h", | 85 "policy_loader_mac.h", |
| 86 "policy_loader_win.cc", | 86 "policy_loader_win.cc", |
| 87 "policy_loader_win.h", | 87 "policy_loader_win.h", |
| 88 "policy_load_status.cc", | |
| 89 "policy_load_status.h", | |
| 90 "policy_map.cc", | 88 "policy_map.cc", |
| 91 "policy_map.h", | 89 "policy_map.h", |
| 92 "policy_namespace.cc", | 90 "policy_namespace.cc", |
| 93 "policy_namespace.h", | 91 "policy_namespace.h", |
| 94 "policy_pref_names.cc", | 92 "policy_pref_names.cc", |
| 95 "policy_pref_names.h", | 93 "policy_pref_names.h", |
| 96 "policy_provider_android.cc", | 94 "policy_provider_android.cc", |
| 97 "policy_provider_android.h", | 95 "policy_provider_android.h", |
| 98 "policy_provider_android_delegate.h", | 96 "policy_provider_android_delegate.h", |
| 99 "policy_service.cc", | 97 "policy_service.cc", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 111 "preg_parser_win.h", | 109 "preg_parser_win.h", |
| 112 "registry_dict_win.cc", | 110 "registry_dict_win.cc", |
| 113 "registry_dict_win.h", | 111 "registry_dict_win.h", |
| 114 "schema.cc", | 112 "schema.cc", |
| 115 "schema.h", | 113 "schema.h", |
| 116 "schema_internal.h", | 114 "schema_internal.h", |
| 117 "schema_map.cc", | 115 "schema_map.cc", |
| 118 "schema_map.h", | 116 "schema_map.h", |
| 119 "schema_registry.cc", | 117 "schema_registry.cc", |
| 120 "schema_registry.h", | 118 "schema_registry.h", |
| 119 "schema_registry_tracking_policy_provider.cc", |
| 120 "schema_registry_tracking_policy_provider.h", |
| 121 "../../policy_export.h", | 121 "../../policy_export.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", |
| (...skipping 59 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 |