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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//components/policy/resources/policy_templates.gni") | 7 import("//components/policy/resources/policy_templates.gni") |
8 import("//third_party/protobuf/proto_library.gni") | 8 import("//third_party/protobuf/proto_library.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 | 10 |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 ] | 222 ] |
223 } | 223 } |
224 | 224 |
225 group("test_support") { | 225 group("test_support") { |
226 public_deps = [ | 226 public_deps = [ |
227 ":chrome_settings_proto_generated_compile", | 227 ":chrome_settings_proto_generated_compile", |
228 ":policy_component", | 228 ":policy_component", |
229 ] | 229 ] |
230 } | 230 } |
231 | 231 |
232 source_set("policy_component_test_support") { | 232 static_library("policy_component_test_support") { |
233 testonly = true | 233 testonly = true |
234 sources = [ | 234 sources = [ |
235 "core/browser/configuration_policy_pref_store_test.cc", | 235 "core/browser/configuration_policy_pref_store_test.cc", |
236 "core/browser/configuration_policy_pref_store_test.h", | 236 "core/browser/configuration_policy_pref_store_test.h", |
237 "core/common/cloud/mock_cloud_external_data_manager.cc", | 237 "core/common/cloud/mock_cloud_external_data_manager.cc", |
238 "core/common/cloud/mock_cloud_external_data_manager.h", | 238 "core/common/cloud/mock_cloud_external_data_manager.h", |
239 "core/common/cloud/mock_cloud_policy_client.cc", | 239 "core/common/cloud/mock_cloud_policy_client.cc", |
240 "core/common/cloud/mock_cloud_policy_client.h", | 240 "core/common/cloud/mock_cloud_policy_client.h", |
241 "core/common/cloud/mock_cloud_policy_store.cc", | 241 "core/common/cloud/mock_cloud_policy_store.cc", |
242 "core/common/cloud/mock_cloud_policy_store.h", | 242 "core/common/cloud/mock_cloud_policy_store.h", |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 "--grit_info", | 416 "--grit_info", |
417 rebase_path(grit_info_script, root_build_dir), | 417 rebase_path(grit_info_script, root_build_dir), |
418 ] + grit_defines | 418 ] + grit_defines |
419 deps = [ | 419 deps = [ |
420 ":add_version", | 420 ":add_version", |
421 ":policy_templates", | 421 ":policy_templates", |
422 ] | 422 ] |
423 } | 423 } |
424 } | 424 } |
425 } | 425 } |
OLD | NEW |