| 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 bundle_data("resources") { | 5 bundle_data("resources") { |
| 6 sources = [ | 6 sources = [ |
| 7 "resources/signin_confirmation_more.png", | 7 "resources/signin_confirmation_more.png", |
| 8 "resources/signin_confirmation_more@2x.png", | 8 "resources/signin_confirmation_more@2x.png", |
| 9 "resources/signin_confirmation_more@3x.png", | 9 "resources/signin_confirmation_more@3x.png", |
| 10 ] | 10 ] |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "//ios/chrome/test:test_support", | 104 "//ios/chrome/test:test_support", |
| 105 "//ios/public/provider/chrome/browser/signin:test_support", | 105 "//ios/public/provider/chrome/browser/signin:test_support", |
| 106 "//ios/web:test_support", | 106 "//ios/web:test_support", |
| 107 "//testing/gtest", | 107 "//testing/gtest", |
| 108 "//third_party/ocmock", | 108 "//third_party/ocmock", |
| 109 "//ui/base", | 109 "//ui/base", |
| 110 ] | 110 ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 source_set("eg_tests") { | 113 source_set("eg_tests") { |
| 114 configs += [ "//build/config/compiler:enable_arc" ] |
| 114 testonly = true | 115 testonly = true |
| 115 sources = [ | 116 sources = [ |
| 116 "signin_interaction_controller_egtest.mm", | 117 "signin_interaction_controller_egtest.mm", |
| 117 ] | 118 ] |
| 118 deps = [ | 119 deps = [ |
| 119 "//base", | 120 "//base", |
| 120 "//base/test:test_support", | 121 "//base/test:test_support", |
| 121 "//components/signin/core/browser", | 122 "//components/signin/core/browser", |
| 122 "//ios/chrome/app/strings", | 123 "//ios/chrome/app/strings", |
| 123 "//ios/chrome/browser", | 124 "//ios/chrome/browser", |
| 124 "//ios/chrome/browser/signin", | 125 "//ios/chrome/browser/signin", |
| 125 "//ios/chrome/browser/ui", | 126 "//ios/chrome/browser/ui", |
| 126 "//ios/chrome/browser/ui/commands", | 127 "//ios/chrome/browser/ui/commands", |
| 127 "//ios/chrome/browser/ui/settings", | 128 "//ios/chrome/browser/ui/settings", |
| 128 "//ios/chrome/browser/ui/tools_menu", | 129 "//ios/chrome/browser/ui/tools_menu", |
| 129 "//ios/chrome/test/app:test_support", | 130 "//ios/chrome/test/app:test_support", |
| 130 "//ios/chrome/test/earl_grey:test_support", | 131 "//ios/chrome/test/earl_grey:test_support", |
| 131 "//ios/public/provider/chrome/browser/signin:test_support", | 132 "//ios/public/provider/chrome/browser/signin:test_support", |
| 132 "//ios/testing:ios_test_support", | 133 "//ios/testing:ios_test_support", |
| 133 "//ios/testing/earl_grey:earl_grey_support", | 134 "//ios/testing/earl_grey:earl_grey_support", |
| 134 "//ios/third_party/earl_grey", | 135 "//ios/third_party/earl_grey", |
| 135 ] | 136 ] |
| 136 libs = [ "XCTest.framework" ] | 137 libs = [ "XCTest.framework" ] |
| 137 } | 138 } |
| OLD | NEW |