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

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

Issue 2022783002: Skeleton of the Safe Browsing Subresource Filter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement RenderFrameObserver::OnDestruct introduced by rebase. Created 4 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("cast_certificate") { 5 source_set("browser") {
6 sources = [ 6 sources = [
7 "cast_cert_validator.cc", 7 "subresource_filter_features.cc",
8 "cast_cert_validator.h", 8 "subresource_filter_features.h",
9 "cast_root_ca_cert_der-inc.h",
10 "eureka_root_ca_der-inc.h",
11 ] 9 ]
12 deps = [ 10 deps = [
13 "//base", 11 "//base",
14 "//net", 12 "//components/subresource_filter/core/common",
13 "//components/variations",
15 ] 14 ]
16 } 15 }
17 16
18 source_set("test_support") { 17 source_set("test_support") {
19 testonly = true 18 testonly = true
20 sources = [ 19 sources = [
21 "cast_cert_validator_test_helpers.cc", 20 "subresource_filter_features_test_support.cc",
22 "cast_cert_validator_test_helpers.h", 21 "subresource_filter_features_test_support.h",
23 ] 22 ]
24 deps = [ 23 deps = [
25 ":cast_certificate", 24 ":browser",
26 "//base", 25 "//base",
27 "//net", 26 "//components/variations",
28 "//testing/gtest", 27 "//testing/gtest",
29 ] 28 ]
30 } 29 }
31 30
32 source_set("unit_tests") { 31 source_set("unit_tests") {
33 testonly = true 32 testonly = true
34 sources = [ 33 sources = [
35 "cast_cert_validator_unittest.cc", 34 "subresource_filter_features_unittest.cc",
36 ] 35 ]
37 deps = [ 36 deps = [
38 ":cast_certificate", 37 ":browser",
39 ":test_support", 38 ":test_support",
40 "//base", 39 "//base",
41 "//net",
42 "//testing/gtest", 40 "//testing/gtest",
43 ] 41 ]
44 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698