Chromium Code Reviews| 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 # GYP version: components/policy.gypi:policy_component_core_browser | 7 # GYP version: components/policy.gypi:policy_component_core_browser |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 visibility = [ "//components/policy/*" ] | 9 visibility = [ "//components/policy/*" ] |
| 10 sources = [ | 10 sources = [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 81 "android/android_combined_policy_provider_unittest.cc", | 81 "android/android_combined_policy_provider_unittest.cc", |
| 82 "android/policy_converter_unittest.cc", | 82 "android/policy_converter_unittest.cc", |
| 83 "autofill_policy_handler_unittest.cc", | 83 "autofill_policy_handler_unittest.cc", |
| 84 "browser_policy_connector_unittest.cc", | 84 "browser_policy_connector_unittest.cc", |
| 85 "configuration_policy_handler_unittest.cc", | 85 "configuration_policy_handler_unittest.cc", |
| 86 "configuration_policy_pref_store_unittest.cc", | 86 "configuration_policy_pref_store_unittest.cc", |
| 87 "url_blacklist_manager_unittest.cc", | 87 "url_blacklist_manager_unittest.cc", |
| 88 "url_blacklist_policy_handler_unittest.cc", | 88 "url_blacklist_policy_handler_unittest.cc", |
| 89 ] | 89 ] |
| 90 deps = [ | 90 deps = [ |
| 91 "//components/policy:policy_component_test_support", | |
| 92 "//components/url_formatter", | 91 "//components/url_formatter", |
| 93 "//testing/gmock", | 92 "//testing/gmock", |
| 94 "//testing/gtest", | 93 "//testing/gtest", |
| 95 ] | 94 ] |
| 95 | |
| 96 if (enable_configuration_policy) { | |
|
bartfab (slow)
2015/09/08 15:01:03
I cannot see the purpose of trying to build policy
Tomasz Moniuszko
2015/09/09 07:54:51
//components/policy:policy_component_test_support
bartfab (slow)
2015/09/14 17:38:56
We do like the idea of a lighter-weight option for
Tomasz Moniuszko
2015/09/15 12:05:12
Thank you for your reply. In Patch Set 2 I disable
| |
| 97 deps += [ "//components/policy:policy_component_test_support" ] | |
| 98 } | |
| 96 } | 99 } |
| OLD | NEW |