Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: components/policy/core/browser/BUILD.gn

Issue 1321013007: Fix dependencies on policy_component_test_support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | components/policy/core/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | components/policy/core/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698