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