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

Unified Diff: ios/components/io_thread/BUILD.gn

Issue 2894483003: Initialize ios/web_view translate with a system-wide URLRequestContext. (Closed)
Patch Set: Remove unneeded deps. Created 3 years, 7 months 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: 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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698