| 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 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") | 
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") | 
| 8 | 8 | 
| 9 if (is_component_build) { | 9 if (is_component_build) { | 
| 10   component("policy_component") { | 10   component("policy_component") { | 
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 193       "core/common/mock_configuration_policy_provider.cc", | 193       "core/common/mock_configuration_policy_provider.cc", | 
| 194       "core/common/mock_configuration_policy_provider.h", | 194       "core/common/mock_configuration_policy_provider.h", | 
| 195       "core/common/mock_policy_service.cc", | 195       "core/common/mock_policy_service.cc", | 
| 196       "core/common/mock_policy_service.h", | 196       "core/common/mock_policy_service.h", | 
| 197       "core/common/policy_test_utils.cc", | 197       "core/common/policy_test_utils.cc", | 
| 198       "core/common/policy_test_utils.h", | 198       "core/common/policy_test_utils.h", | 
| 199       "core/common/preferences_mock_mac.cc", | 199       "core/common/preferences_mock_mac.cc", | 
| 200       "core/common/preferences_mock_mac.h", | 200       "core/common/preferences_mock_mac.h", | 
| 201       "core/common/remote_commands/test_remote_command_job.cc", | 201       "core/common/remote_commands/test_remote_command_job.cc", | 
| 202       "core/common/remote_commands/test_remote_command_job.h", | 202       "core/common/remote_commands/test_remote_command_job.h", | 
|  | 203       "core/common/remote_commands/testing_remote_commands_server.cc", | 
|  | 204       "core/common/remote_commands/testing_remote_commands_server.h", | 
| 203     ] | 205     ] | 
| 204 | 206 | 
| 205     if (is_chromeos) { | 207     if (is_chromeos) { | 
| 206       sources -= [ | 208       sources -= [ | 
| 207         "core/common/cloud/mock_user_cloud_policy_store.cc", | 209         "core/common/cloud/mock_user_cloud_policy_store.cc", | 
| 208         "core/common/cloud/mock_user_cloud_policy_store.h", | 210         "core/common/cloud/mock_user_cloud_policy_store.h", | 
| 209       ] | 211       ] | 
| 210     } | 212     } | 
| 211 | 213 | 
| 212     deps = [ | 214     deps = [ | 
| 213       ":policy_component", | 215       ":policy_component", | 
| 214       ":test_support", | 216       ":test_support", | 
| 215       "//components/policy/proto", | 217       "//components/policy/proto", | 
| 216       "//testing/gmock", | 218       "//testing/gmock", | 
| 217       "//testing/gtest", | 219       "//testing/gtest", | 
| 218     ] | 220     ] | 
| 219   } | 221   } | 
| 220 } | 222 } | 
| 221 #TODO(GYP) policy templates, chrome_manifest_bundle | 223 #TODO(GYP) policy templates, chrome_manifest_bundle | 
| OLD | NEW | 
|---|