| Index: components/subresource_filter/core/browser/BUILD.gn
|
| diff --git a/components/cast_certificate/BUILD.gn b/components/subresource_filter/core/browser/BUILD.gn
|
| similarity index 53%
|
| copy from components/cast_certificate/BUILD.gn
|
| copy to components/subresource_filter/core/browser/BUILD.gn
|
| index 7e53f203f68a0eb21b6cf76e7d453199260c49b6..519b81236a3bda94e3f1d528ce3a91f1fca79157 100644
|
| --- a/components/cast_certificate/BUILD.gn
|
| +++ b/components/subresource_filter/core/browser/BUILD.gn
|
| @@ -2,29 +2,28 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("cast_certificate") {
|
| +source_set("browser") {
|
| sources = [
|
| - "cast_cert_validator.cc",
|
| - "cast_cert_validator.h",
|
| - "cast_root_ca_cert_der-inc.h",
|
| - "eureka_root_ca_der-inc.h",
|
| + "subresource_filter_features.cc",
|
| + "subresource_filter_features.h",
|
| ]
|
| deps = [
|
| "//base",
|
| - "//net",
|
| + "//components/subresource_filter/core/common",
|
| + "//components/variations",
|
| ]
|
| }
|
|
|
| source_set("test_support") {
|
| testonly = true
|
| sources = [
|
| - "cast_cert_validator_test_helpers.cc",
|
| - "cast_cert_validator_test_helpers.h",
|
| + "subresource_filter_features_test_support.cc",
|
| + "subresource_filter_features_test_support.h",
|
| ]
|
| deps = [
|
| - ":cast_certificate",
|
| + ":browser",
|
| "//base",
|
| - "//net",
|
| + "//components/variations",
|
| "//testing/gtest",
|
| ]
|
| }
|
| @@ -32,13 +31,11 @@ source_set("test_support") {
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| - "cast_cert_validator_unittest.cc",
|
| + "subresource_filter_features_unittest.cc",
|
| ]
|
| deps = [
|
| - ":cast_certificate",
|
| + ":browser",
|
| ":test_support",
|
| - "//base",
|
| - "//net",
|
| "//testing/gtest",
|
| ]
|
| }
|
|
|