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

Side by Side Diff: components/safe_browsing_db/BUILD.gn

Issue 2910843002: [Cleanup] Move all browsertests to use ScopedFeatureList to modify features
Patch Set: Ilya comments addressed Created 3 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 proto_library("safebrowsing_proto") { 7 proto_library("safebrowsing_proto") {
8 sources = [ 8 sources = [
9 "safebrowsing.proto", 9 "safebrowsing.proto",
10 ] 10 ]
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 deps = [ 205 deps = [
206 ":v4_protocol_manager_util", 206 ":v4_protocol_manager_util",
207 ":v4_store", 207 ":v4_store",
208 "//base", 208 "//base",
209 "//content/public/browser", 209 "//content/public/browser",
210 ] 210 ]
211 } 211 }
212 212
213 static_library("v4_feature_list") { 213 static_library("v4_feature_list") {
214 sources = [ 214 sources = [
215 "features.cc",
216 "features.h",
Ilya Sherman 2017/06/28 19:56:05 Hmm, did you forget to "git add" these files? Or
chaopeng 2017/06/30 19:32:36 I forgot these, added.
215 "v4_feature_list.cc", 217 "v4_feature_list.cc",
216 "v4_feature_list.h", 218 "v4_feature_list.h",
217 ] 219 ]
218 deps = [ 220 deps = [
219 "//base", 221 "//base",
220 ] 222 ]
221 } 223 }
222 224
223 static_library("v4_get_hash_protocol_manager") { 225 static_library("v4_get_hash_protocol_manager") {
224 sources = [ 226 sources = [
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 deps = [ 520 deps = [
519 ":database_manager", 521 ":database_manager",
520 ":test_database_manager", 522 ":test_database_manager",
521 ":whitelist_checker_client", 523 ":whitelist_checker_client",
522 "//base:base", 524 "//base:base",
523 "//base/test:test_support", 525 "//base/test:test_support",
524 "//testing/gmock:gmock", 526 "//testing/gmock:gmock",
525 "//testing/gtest:gtest", 527 "//testing/gtest:gtest",
526 ] 528 ]
527 } 529 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698