Index: ios/components/io_thread/BUILD.gn |
diff --git a/ios/components/io_thread/BUILD.gn b/ios/components/io_thread/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..039a6c746ebb5a003ce76d6d44c02a2f818e4d2e |
--- /dev/null |
+++ b/ios/components/io_thread/BUILD.gn |
@@ -0,0 +1,27 @@ |
+# Copyright 2017 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. |
+ |
+component("io_thread") { |
+ configs += [ "//build/config/compiler:enable_arc" ] |
+ |
+ deps = [ |
+ "//base", |
+ "//components/net_log", |
+ "//components/network_session_configurator", |
+ "//components/prefs", |
+ "//components/proxy_config", |
+ "//components/proxy_config/ios", |
+ "//components/ssl_config", |
+ "//components/variations", |
+ "//components/version_info", |
+ "//ios/web", |
+ "//ios/web:user_agent", |
+ "//net", |
+ ] |
+ |
+ sources = [ |
+ "io_thread.h", |
+ "io_thread.mm", |
+ ] |
+} |