| 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 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "chrome_cookie_store_ios_client.h", | 8 "chrome_cookie_store_ios_client.h", |
| 9 "chrome_cookie_store_ios_client.mm", | 9 "chrome_cookie_store_ios_client.mm", |
| 10 "connection_type_observer_bridge.h", | 10 "connection_type_observer_bridge.h", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 configs += [ "//build/config/compiler:enable_arc" ] | 61 configs += [ "//build/config/compiler:enable_arc" ] |
| 62 testonly = true | 62 testonly = true |
| 63 sources = [ | 63 sources = [ |
| 64 "cookie_util_unittest.mm", | 64 "cookie_util_unittest.mm", |
| 65 "retryable_url_fetcher_unittest.mm", | 65 "retryable_url_fetcher_unittest.mm", |
| 66 ] | 66 ] |
| 67 deps = [ | 67 deps = [ |
| 68 ":net", | 68 ":net", |
| 69 "//base", | 69 "//base", |
| 70 "//base/test:test_support", | 70 "//base/test:test_support", |
| 71 "//ios/web:test_support", | 71 "//ios/web/public/test", |
| 72 "//net", | 72 "//net", |
| 73 "//net:test_support", | 73 "//net:test_support", |
| 74 "//testing/gtest", | 74 "//testing/gtest", |
| 75 ] | 75 ] |
| 76 } | 76 } |
| 77 | 77 |
| 78 source_set("eg_tests") { | 78 source_set("eg_tests") { |
| 79 configs += [ "//build/config/compiler:enable_arc" ] | 79 configs += [ "//build/config/compiler:enable_arc" ] |
| 80 testonly = true | 80 testonly = true |
| 81 sources = [ | 81 sources = [ |
| 82 "cookies_egtest.mm", | 82 "cookies_egtest.mm", |
| 83 ] | 83 ] |
| 84 deps = [ | 84 deps = [ |
| 85 "//base", | 85 "//base", |
| 86 "//ios/chrome/test/app:test_support", | 86 "//ios/chrome/test/app:test_support", |
| 87 "//ios/chrome/test/earl_grey:test_support", | 87 "//ios/chrome/test/earl_grey:test_support", |
| 88 "//ios/third_party/earl_grey", | 88 "//ios/third_party/earl_grey", |
| 89 "//ios/web:test_support", | 89 "//ios/web/public/test", |
| 90 "//ios/web/public/test/http_server", |
| 90 "//url", | 91 "//url", |
| 91 ] | 92 ] |
| 92 libs = [ "XCTest.framework" ] | 93 libs = [ "XCTest.framework" ] |
| 93 } | 94 } |
| OLD | NEW |