Chromium Code Reviews| Index: components/policy/core/browser/BUILD.gn |
| diff --git a/components/policy/core/browser/BUILD.gn b/components/policy/core/browser/BUILD.gn |
| index d6441ad1cbb8dc52f20a21ddf02d89532d0062af..ecee8e3aed6450c4f9226d70296de29a54de8a18 100644 |
| --- a/components/policy/core/browser/BUILD.gn |
| +++ b/components/policy/core/browser/BUILD.gn |
| @@ -88,9 +88,12 @@ source_set("unit_tests") { |
| "url_blacklist_policy_handler_unittest.cc", |
| ] |
| deps = [ |
| - "//components/policy:policy_component_test_support", |
| "//components/url_formatter", |
| "//testing/gmock", |
| "//testing/gtest", |
| ] |
| + |
| + 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
|
| + deps += [ "//components/policy:policy_component_test_support" ] |
| + } |
| } |