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

Side by Side Diff: chrome/test/BUILD.gn

Issue 2910843002: [Cleanup] Move all browsertests to use ScopedFeatureList to modify features
Patch Set: rebase update Created 3 years, 6 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after
1105 # implemented. See crbug.com/611756 1105 # implemented. See crbug.com/611756
1106 ] 1106 ]
1107 1107
1108 configs += [ "//build/config:precompiled_headers" ] 1108 configs += [ "//build/config:precompiled_headers" ]
1109 1109
1110 deps = [ 1110 deps = [
1111 ":browser_tests_runner", 1111 ":browser_tests_runner",
1112 ":repack_pseudo_locales", 1112 ":repack_pseudo_locales",
1113 ":test_support", 1113 ":test_support",
1114 "//base", 1114 "//base",
1115 "//chrome/browser:browser",
Ilya Sherman 2017/06/12 21:50:29 Hmm, why did you add this dependency? It's alread
chaopeng 2017/06/28 19:21:24 Done.
1116 "//components/safe_browsing_db:v4_feature_list",
Ilya Sherman 2017/06/12 21:50:29 Would this be appropriate to move down into the de
chaopeng 2017/06/28 19:21:24 Android does not need this. Moved to desktop-only.
1115 "//components/spellcheck:build_features", 1117 "//components/spellcheck:build_features",
1116 "//components/sync:test_support_model", 1118 "//components/sync:test_support_model",
1117 "//extensions/features", 1119 "//extensions/features",
1118 "//media:media_features", 1120 "//media:media_features",
1119 "//ppapi/features", 1121 "//ppapi/features",
1120 "//printing/features", 1122 "//printing/features",
1121 "//rlz/features", 1123 "//rlz/features",
1122 "//third_party/WebKit/public:features", 1124 "//third_party/WebKit/public:features",
1123 ] 1125 ]
1124 1126
(...skipping 4026 matching lines...) Expand 10 before | Expand all | Expand 10 after
5151 } 5153 }
5152 5154
5153 if (is_win) { 5155 if (is_win) {
5154 loadable_module("conflicts_dll") { 5156 loadable_module("conflicts_dll") {
5155 testonly = true 5157 testonly = true
5156 sources = [ 5158 sources = [
5157 "conflicts/conflicts_dll.cc", 5159 "conflicts/conflicts_dll.cc",
5158 ] 5160 ]
5159 } 5161 }
5160 } 5162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698