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