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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 "cloud/user_cloud_policy_manager.cc", | 54 "cloud/user_cloud_policy_manager.cc", |
55 "cloud/user_cloud_policy_manager.h", | 55 "cloud/user_cloud_policy_manager.h", |
56 "cloud/user_cloud_policy_store.cc", | 56 "cloud/user_cloud_policy_store.cc", |
57 "cloud/user_cloud_policy_store.h", | 57 "cloud/user_cloud_policy_store.h", |
58 "cloud/user_cloud_policy_store_base.cc", | 58 "cloud/user_cloud_policy_store_base.cc", |
59 "cloud/user_cloud_policy_store_base.h", | 59 "cloud/user_cloud_policy_store_base.h", |
60 "cloud/user_info_fetcher.cc", | 60 "cloud/user_info_fetcher.cc", |
61 "cloud/user_info_fetcher.h", | 61 "cloud/user_info_fetcher.h", |
62 "cloud/user_policy_request_context.cc", | 62 "cloud/user_policy_request_context.cc", |
63 "cloud/user_policy_request_context.h", | 63 "cloud/user_policy_request_context.h", |
64 "async_policy_loader.cc", | |
65 "async_policy_loader.h", | 64 "async_policy_loader.h", |
65 "async_policy_loader.mm", | |
Lei Zhang
2015/01/14 00:20:02
I think you changed the wrong file name here?
Łukasz Anforowicz
2015/01/14 00:48:51
Thanks for catching this. Fixed.
| |
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 "mac_util.cc", | 75 "mac_util.cc", |
(...skipping 114 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 |