| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 "schema_registry_tracking_policy_provider.h", | 129 "schema_registry_tracking_policy_provider.h", |
| 130 ] | 130 ] |
| 131 | 131 |
| 132 configs += [ "//build/config:precompiled_headers" ] | 132 configs += [ "//build/config:precompiled_headers" ] |
| 133 | 133 |
| 134 public_deps = [ | 134 public_deps = [ |
| 135 "//components/policy/proto", | 135 "//components/policy/proto", |
| 136 ] | 136 ] |
| 137 deps = [ | 137 deps = [ |
| 138 "//base:i18n", | 138 "//base:i18n", |
| 139 "//base:prefs", | |
| 140 "//base/third_party/dynamic_annotations", | 139 "//base/third_party/dynamic_annotations", |
| 141 "//components/data_use_measurement/core", | 140 "//components/data_use_measurement/core", |
| 142 "//components/json_schema", | 141 "//components/json_schema", |
| 143 "//components/policy", | 142 "//components/policy", |
| 143 "//components/prefs", |
| 144 "//google_apis", | 144 "//google_apis", |
| 145 "//net", | 145 "//net", |
| 146 "//third_party/re2", | 146 "//third_party/re2", |
| 147 "//url", | 147 "//url", |
| 148 ] | 148 ] |
| 149 | 149 |
| 150 if (is_win) { | 150 if (is_win) { |
| 151 libs = [ "netapi32.lib" ] | 151 libs = [ "netapi32.lib" ] |
| 152 } | 152 } |
| 153 if (is_android) { | 153 if (is_android) { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 "cloud/component_cloud_policy_updater_unittest.cc", | 276 "cloud/component_cloud_policy_updater_unittest.cc", |
| 277 "cloud/external_policy_data_fetcher_unittest.cc", | 277 "cloud/external_policy_data_fetcher_unittest.cc", |
| 278 "cloud/external_policy_data_updater_unittest.cc", | 278 "cloud/external_policy_data_updater_unittest.cc", |
| 279 "cloud/resource_cache_unittest.cc", | 279 "cloud/resource_cache_unittest.cc", |
| 280 "config_dir_policy_loader_unittest.cc", | 280 "config_dir_policy_loader_unittest.cc", |
| 281 ] | 281 ] |
| 282 } | 282 } |
| 283 | 283 |
| 284 deps = [ | 284 deps = [ |
| 285 "//base", | 285 "//base", |
| 286 "//base:prefs_test_support", | |
| 287 "//base/test:test_support", | 286 "//base/test:test_support", |
| 288 "//components/policy", | 287 "//components/policy", |
| 289 "//components/policy:policy_component_test_support", | 288 "//components/policy:policy_component_test_support", |
| 289 "//components/prefs:test_support", |
| 290 "//components/prefs:test_support", |
| 290 "//google_apis", | 291 "//google_apis", |
| 291 "//net:test_support", | 292 "//net:test_support", |
| 292 "//testing/gmock", | 293 "//testing/gmock", |
| 293 "//testing/gtest", | 294 "//testing/gtest", |
| 294 ] | 295 ] |
| 295 } | 296 } |
| 296 } | 297 } |
| OLD | NEW |