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..77d9bae3212f8d3e0aeaba5a6b8e2d03dfb71a18 |
--- /dev/null |
+++ b/components/ssl_config/BUILD.gn |
@@ -0,0 +1,23 @@ |
+# 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 |
+component("ssl_config") { |
droger
2015/09/07 13:06:37
Change this to:
BUILD.gn:source_set("ssl_config")
Abhishek
2015/09/07 13:16:21
Done.
|
+ 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", |
+ ] |
+} |