| 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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "//base", | 72 "//base", |
| 73 "//base/test:test_support", | 73 "//base/test:test_support", |
| 74 "//ios/web:test_support", | 74 "//ios/web: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 testonly = true | 83 testonly = true |
| 83 sources = [ | 84 sources = [ |
| 84 "cookies_egtest.mm", | 85 "cookies_egtest.mm", |
| 85 ] | 86 ] |
| 86 deps = [ | 87 deps = [ |
| 87 "//base", | 88 "//base", |
| 88 "//ios/chrome/test/app:test_support", | 89 "//ios/chrome/test/app:test_support", |
| 89 "//ios/chrome/test/earl_grey:test_support", | 90 "//ios/chrome/test/earl_grey:test_support", |
| 90 "//ios/third_party/earl_grey", | 91 "//ios/third_party/earl_grey", |
| 91 "//ios/web:test_support", | 92 "//ios/web:test_support", |
| 92 "//url", | 93 "//url", |
| 93 ] | 94 ] |
| 94 libs = [ "XCTest.framework" ] | 95 libs = [ "XCTest.framework" ] |
| 95 } | 96 } |
| OLD | NEW |