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..c552216131080632587cb3326a73bdcce5643055 |
--- /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 |
+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", |
Ryan Sleevi
2015/09/08 21:02:16
Why does this dep exist here, but not in the .gypi
Abhishek
2015/09/10 13:32:54
Done.
|
+ "//components/content_settings/core/common", |
+ "//net", |
+ ] |
+} |