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 29 matching lines...) Expand all Loading... |
40 "cloud/enterprise_metrics.cc", | 40 "cloud/enterprise_metrics.cc", |
41 "cloud/enterprise_metrics.h", | 41 "cloud/enterprise_metrics.h", |
42 "cloud/external_policy_data_fetcher.cc", | 42 "cloud/external_policy_data_fetcher.cc", |
43 "cloud/external_policy_data_fetcher.h", | 43 "cloud/external_policy_data_fetcher.h", |
44 "cloud/external_policy_data_updater.cc", | 44 "cloud/external_policy_data_updater.cc", |
45 "cloud/external_policy_data_updater.h", | 45 "cloud/external_policy_data_updater.h", |
46 "cloud/policy_header_io_helper.cc", | 46 "cloud/policy_header_io_helper.cc", |
47 "cloud/policy_header_io_helper.h", | 47 "cloud/policy_header_io_helper.h", |
48 "cloud/policy_header_service.cc", | 48 "cloud/policy_header_service.cc", |
49 "cloud/policy_header_service.h", | 49 "cloud/policy_header_service.h", |
50 "cloud/rate_limiter.cc", | |
51 "cloud/rate_limiter.h", | |
52 "cloud/resource_cache.cc", | 50 "cloud/resource_cache.cc", |
53 "cloud/resource_cache.h", | 51 "cloud/resource_cache.h", |
54 "cloud/system_policy_request_context.cc", | 52 "cloud/system_policy_request_context.cc", |
55 "cloud/system_policy_request_context.h", | 53 "cloud/system_policy_request_context.h", |
56 "cloud/user_cloud_policy_manager.cc", | 54 "cloud/user_cloud_policy_manager.cc", |
57 "cloud/user_cloud_policy_manager.h", | 55 "cloud/user_cloud_policy_manager.h", |
58 "cloud/user_cloud_policy_store.cc", | 56 "cloud/user_cloud_policy_store.cc", |
59 "cloud/user_cloud_policy_store.h", | 57 "cloud/user_cloud_policy_store.h", |
60 "cloud/user_cloud_policy_store_base.cc", | 58 "cloud/user_cloud_policy_store_base.cc", |
61 "cloud/user_cloud_policy_store_base.h", | 59 "cloud/user_cloud_policy_store_base.h", |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 "policy_service.cc", | 190 "policy_service.cc", |
193 "policy_service.h", | 191 "policy_service.h", |
194 "policy_service_stub.cc", | 192 "policy_service_stub.cc", |
195 "policy_service_stub.h", | 193 "policy_service_stub.h", |
196 ] | 194 ] |
197 deps = [ | 195 deps = [ |
198 "//base", | 196 "//base", |
199 ] | 197 ] |
200 } | 198 } |
201 } | 199 } |
OLD | NEW |