Index: components/ssl_config/BUILD.gn |
diff --git a/components/ssl_config/BUILD.gn b/components/ssl_config/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..cc79bea1a3b035e7cbabdef6513f0ccce9eb216f |
--- /dev/null |
+++ b/components/ssl_config/BUILD.gn |
@@ -0,0 +1,34 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+# GYP version: components/ssl_config.gypi:ssl_config |
+source_set("ssl_config") { |
+ sources = [ |
+ "ssl_config_prefs.cc", |
+ "ssl_config_prefs.h", |
+ "ssl_config_service_manager.h", |
+ "ssl_config_service_manager_pref.cc", |
+ "ssl_config_switches.cc", |
+ "ssl_config_switches.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//base:prefs", |
+ "//components/content_settings/core/browser", |
+ "//components/content_settings/core/common", |
+ "//net", |
+ ] |
+} |
+ |
+source_set("unit_tests") { |
+ testonly = true |
+ sources = [ |
+ "ssl_config_service_manager_pref_unittest.cc", |
+ ] |
+ deps = [ |
+ ":ssl_config", |
+ "//testing/gtest", |
+ ] |
+} |