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

Unified Diff: components/security_state/BUILD.gn

Issue 1539043002: Pull SecurityStateModel out into a component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unit test debugging Created 5 years 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 side-by-side diff with in-line comments
Download patch
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",
]

Powered by Google App Engine
This is Rietveld 408576698