| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("net") { | 5 source_set("net") { |
| 6 sources = [ | 6 sources = [ |
| 7 "chrome_cookie_store_ios_client.h", | 7 "chrome_cookie_store_ios_client.h", |
| 8 "chrome_cookie_store_ios_client.mm", | 8 "chrome_cookie_store_ios_client.mm", |
| 9 "connection_type_observer_bridge.h", | 9 "connection_type_observer_bridge.h", |
| 10 "connection_type_observer_bridge.mm", | 10 "connection_type_observer_bridge.mm", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "mock_image_fetcher.h", | 62 "mock_image_fetcher.h", |
| 63 "mock_image_fetcher.mm", | 63 "mock_image_fetcher.mm", |
| 64 ] | 64 ] |
| 65 deps = [ | 65 deps = [ |
| 66 ":net", | 66 ":net", |
| 67 "//testing/gmock", | 67 "//testing/gmock", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| 70 | 70 |
| 71 source_set("unit_tests") { | 71 source_set("unit_tests") { |
| 72 configs += [ "//build/config/compiler:enable_arc" ] |
| 72 testonly = true | 73 testonly = true |
| 73 sources = [ | 74 sources = [ |
| 74 "cookie_util_unittest.mm", | 75 "cookie_util_unittest.mm", |
| 75 "image_fetcher_unittest.mm", | 76 "image_fetcher_unittest.mm", |
| 76 "metrics_network_client_unittest.mm", | 77 "metrics_network_client_unittest.mm", |
| 77 "retryable_url_fetcher_unittest.mm", | 78 "retryable_url_fetcher_unittest.mm", |
| 78 ] | 79 ] |
| 79 deps = [ | 80 deps = [ |
| 80 ":net", | 81 ":net", |
| 81 "//base", | 82 "//base", |
| 82 "//base/test:test_support", | 83 "//base/test:test_support", |
| 83 "//ios/web:test_support", | 84 "//ios/web:test_support", |
| 84 "//net", | 85 "//net", |
| 85 "//net:test_support", | 86 "//net:test_support", |
| 86 "//testing/gtest", | 87 "//testing/gtest", |
| 87 ] | 88 ] |
| 88 } | 89 } |
| OLD | NEW |