| 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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 "policy_statistics_collector_unittest.cc", | 245 "policy_statistics_collector_unittest.cc", |
| 246 "preg_parser_win_unittest.cc", | 246 "preg_parser_win_unittest.cc", |
| 247 "registry_dict_win_unittest.cc", | 247 "registry_dict_win_unittest.cc", |
| 248 "remote_commands/remote_commands_queue_unittest.cc", | 248 "remote_commands/remote_commands_queue_unittest.cc", |
| 249 "remote_commands/remote_commands_service_unittest.cc", | 249 "remote_commands/remote_commands_service_unittest.cc", |
| 250 "schema_map_unittest.cc", | 250 "schema_map_unittest.cc", |
| 251 "schema_registry_tracking_policy_provider_unittest.cc", | 251 "schema_registry_tracking_policy_provider_unittest.cc", |
| 252 "schema_registry_unittest.cc", | 252 "schema_registry_unittest.cc", |
| 253 "schema_unittest.cc", | 253 "schema_unittest.cc", |
| 254 ] | 254 ] |
| 255 if (!is_chromeos) { | 255 if (is_chromeos) { |
| 256 sources += [ "proxy_policy_provider_unittest.cc" ] |
| 257 } else { |
| 256 sources += [ | 258 sources += [ |
| 257 "cloud/user_cloud_policy_manager_unittest.cc", | 259 "cloud/user_cloud_policy_manager_unittest.cc", |
| 258 "cloud/user_cloud_policy_store_unittest.cc", | 260 "cloud/user_cloud_policy_store_unittest.cc", |
| 259 ] | 261 ] |
| 260 } | 262 } |
| 261 if (!is_android) { | 263 if (!is_android) { |
| 262 sources += [ "async_policy_provider_unittest.cc" ] | 264 sources += [ "async_policy_provider_unittest.cc" ] |
| 263 } | 265 } |
| 264 if (!is_android && !is_ios) { | 266 if (!is_android && !is_ios) { |
| 265 sources += [ | 267 sources += [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 290 "//components/policy:policy_component_test_support", | 292 "//components/policy:policy_component_test_support", |
| 291 "//components/prefs:test_support", | 293 "//components/prefs:test_support", |
| 292 "//components/prefs:test_support", | 294 "//components/prefs:test_support", |
| 293 "//google_apis", | 295 "//google_apis", |
| 294 "//net:test_support", | 296 "//net:test_support", |
| 295 "//testing/gmock", | 297 "//testing/gmock", |
| 296 "//testing/gtest", | 298 "//testing/gtest", |
| 297 ] | 299 ] |
| 298 } | 300 } |
| 299 } | 301 } |
| OLD | NEW |