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