| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 105       "policy_switches.h", | 105       "policy_switches.h", | 
| 106       "policy_types.h", | 106       "policy_types.h", | 
| 107       "preferences_mac.cc", | 107       "preferences_mac.cc", | 
| 108       "preferences_mac.h", | 108       "preferences_mac.h", | 
| 109       "preg_parser_win.cc", | 109       "preg_parser_win.cc", | 
| 110       "preg_parser_win.h", | 110       "preg_parser_win.h", | 
| 111       "registry_dict_win.cc", | 111       "registry_dict_win.cc", | 
| 112       "registry_dict_win.h", | 112       "registry_dict_win.h", | 
| 113       "remote_commands/remote_command_job.cc", | 113       "remote_commands/remote_command_job.cc", | 
| 114       "remote_commands/remote_command_job.h", | 114       "remote_commands/remote_command_job.h", | 
|  | 115       "remote_commands/remote_commands_factory.cc", | 
|  | 116       "remote_commands/remote_commands_factory.h", | 
| 115       "remote_commands/remote_commands_queue.cc", | 117       "remote_commands/remote_commands_queue.cc", | 
| 116       "remote_commands/remote_commands_queue.h", | 118       "remote_commands/remote_commands_queue.h", | 
|  | 119       "remote_commands/remote_commands_service.cc", | 
|  | 120       "remote_commands/remote_commands_service.h", | 
| 117       "schema.cc", | 121       "schema.cc", | 
| 118       "schema.h", | 122       "schema.h", | 
| 119       "schema_internal.h", | 123       "schema_internal.h", | 
| 120       "schema_map.cc", | 124       "schema_map.cc", | 
| 121       "schema_map.h", | 125       "schema_map.h", | 
| 122       "schema_registry.cc", | 126       "schema_registry.cc", | 
| 123       "schema_registry.h", | 127       "schema_registry.h", | 
| 124       "schema_registry_tracking_policy_provider.cc", | 128       "schema_registry_tracking_policy_provider.cc", | 
| 125       "schema_registry_tracking_policy_provider.h", | 129       "schema_registry_tracking_policy_provider.h", | 
| 126     ] | 130     ] | 
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 194       "policy_service.cc", | 198       "policy_service.cc", | 
| 195       "policy_service.h", | 199       "policy_service.h", | 
| 196       "policy_service_stub.cc", | 200       "policy_service_stub.cc", | 
| 197       "policy_service_stub.h", | 201       "policy_service_stub.h", | 
| 198     ] | 202     ] | 
| 199     deps = [ | 203     deps = [ | 
| 200       "//base", | 204       "//base", | 
| 201     ] | 205     ] | 
| 202   } | 206   } | 
| 203 } | 207 } | 
| OLD | NEW | 
|---|