| 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 "ios_io_thread.h", |
| 25 "ios_io_thread.mm", |
| 26 ] |
| 27 } |
| 28 |
| 29 source_set("unit_tests") { |
| 30 configs += [ "//build/config/compiler:enable_arc" ] |
| 31 testonly = true |
| 32 sources = [ |
| 33 "ios_io_thread_unittest.mm", |
| 34 ] |
| 35 deps = [ |
| 36 ":io_thread", |
| 37 "//base", |
| 38 "//components/prefs", |
| 39 "//components/prefs:test_support", |
| 40 "//components/proxy_config", |
| 41 "//components/ssl_config", |
| 42 "//ios/web", |
| 43 "//ios/web:test_support", |
| 44 "//net", |
| 45 "//net:test_support", |
| 46 "//testing/gtest", |
| 47 ] |
| 48 } |
| OLD | NEW |