| 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 visibility = [ | 8 visibility = [ |
| 9 "//components/policy/*", | 9 "//components/policy/*", |
| 10 "//components/syncable_prefs/*", | 10 "//components/syncable_prefs/*", |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 "//base", | 216 "//base", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 } | 219 } |
| 220 | 220 |
| 221 if (enable_configuration_policy) { | 221 if (enable_configuration_policy) { |
| 222 source_set("unit_tests") { | 222 source_set("unit_tests") { |
| 223 testonly = true | 223 testonly = true |
| 224 sources = [ | 224 sources = [ |
| 225 "cloud/cloud_policy_client_unittest.cc", | 225 "cloud/cloud_policy_client_unittest.cc", |
| 226 "cloud/cloud_policy_constants_unittest.cc", | |
| 227 "cloud/cloud_policy_core_unittest.cc", | 226 "cloud/cloud_policy_core_unittest.cc", |
| 228 "cloud/cloud_policy_manager_unittest.cc", | 227 "cloud/cloud_policy_manager_unittest.cc", |
| 229 "cloud/cloud_policy_refresh_scheduler_unittest.cc", | 228 "cloud/cloud_policy_refresh_scheduler_unittest.cc", |
| 230 "cloud/cloud_policy_service_unittest.cc", | 229 "cloud/cloud_policy_service_unittest.cc", |
| 231 "cloud/cloud_policy_validator_unittest.cc", | 230 "cloud/cloud_policy_validator_unittest.cc", |
| 232 "cloud/device_management_service_unittest.cc", | 231 "cloud/device_management_service_unittest.cc", |
| 233 "cloud/policy_header_io_helper_unittest.cc", | 232 "cloud/policy_header_io_helper_unittest.cc", |
| 234 "cloud/policy_header_service_unittest.cc", | 233 "cloud/policy_header_service_unittest.cc", |
| 235 "cloud/user_info_fetcher_unittest.cc", | 234 "cloud/user_info_fetcher_unittest.cc", |
| 236 "generate_policy_source_unittest.cc", | 235 "generate_policy_source_unittest.cc", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "//components/policy:policy_component_test_support", | 289 "//components/policy:policy_component_test_support", |
| 291 "//components/prefs:test_support", | 290 "//components/prefs:test_support", |
| 292 "//components/prefs:test_support", | 291 "//components/prefs:test_support", |
| 293 "//google_apis", | 292 "//google_apis", |
| 294 "//net:test_support", | 293 "//net:test_support", |
| 295 "//testing/gmock", | 294 "//testing/gmock", |
| 296 "//testing/gtest", | 295 "//testing/gtest", |
| 297 ] | 296 ] |
| 298 } | 297 } |
| 299 } | 298 } |
| OLD | NEW |