OLD | NEW |
(Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("io_thread") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 |
| 8 deps = [ |
| 9 "//base", |
| 10 "//components/net_log", |
| 11 "//components/network_session_configurator", |
| 12 "//components/prefs", |
| 13 "//components/proxy_config", |
| 14 "//components/proxy_config/ios", |
| 15 "//components/ssl_config", |
| 16 "//components/variations", |
| 17 "//components/version_info", |
| 18 "//ios/web", |
| 19 "//ios/web:user_agent", |
| 20 "//net", |
| 21 ] |
| 22 |
| 23 sources = [ |
| 24 "io_thread.h", |
| 25 "io_thread.mm", |
| 26 ] |
| 27 } |
OLD | NEW |