| Index: components/security_state/BUILD.gn
|
| diff --git a/components/certificate_transparency/BUILD.gn b/components/security_state/BUILD.gn
|
| similarity index 55%
|
| copy from components/certificate_transparency/BUILD.gn
|
| copy to components/security_state/BUILD.gn
|
| index e09e6f2aa7d7837cb8e08f37a028a588cf5bde74..67a8ae94cd1b8bc1ac2fe22cfe5e45b5b80c7eb9 100644
|
| --- a/components/certificate_transparency/BUILD.gn
|
| +++ b/components/security_state/BUILD.gn
|
| @@ -2,30 +2,30 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -source_set("certificate_transparency") {
|
| +# GYP version: components/security_state.gyp
|
| +source_set("security_state") {
|
| sources = [
|
| - "log_proof_fetcher.cc",
|
| - "log_proof_fetcher.h",
|
| + "security_state_model.cc",
|
| + "security_state_model.h",
|
| + "security_state_model_client.h",
|
| + "switches.cc",
|
| + "switches.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| - "//components/safe_json",
|
| "//net",
|
| - "//url",
|
| ]
|
| }
|
|
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| - "log_proof_fetcher_unittest.cc",
|
| + "security_state_model_unittest.cc",
|
| ]
|
|
|
| deps = [
|
| - ":certificate_transparency",
|
| - "//base/test:test_support",
|
| - "//components/safe_json:test_support",
|
| + ":security_state",
|
| "//net:test_support",
|
| "//testing/gtest",
|
| ]
|
|
|