| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 bundle_data("resources") { | 7 bundle_data("resources") { |
| 8 sources = [ | 8 sources = [ |
| 9 "resources/signin_confirmation_more.png", | 9 "resources/signin_confirmation_more.png", |
| 10 "resources/signin_confirmation_more@2x.png", | 10 "resources/signin_confirmation_more@2x.png", |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//ios/chrome/browser/browser_state:test_support", | 175 "//ios/chrome/browser/browser_state:test_support", |
| 176 "//ios/chrome/browser/infobars", | 176 "//ios/chrome/browser/infobars", |
| 177 "//ios/chrome/browser/prefs:browser_prefs", | 177 "//ios/chrome/browser/prefs:browser_prefs", |
| 178 "//ios/chrome/browser/signin", | 178 "//ios/chrome/browser/signin", |
| 179 "//ios/chrome/browser/signin:test_support", | 179 "//ios/chrome/browser/signin:test_support", |
| 180 "//ios/chrome/browser/ui/colors", | 180 "//ios/chrome/browser/ui/colors", |
| 181 "//ios/chrome/browser/ui/commands", | 181 "//ios/chrome/browser/ui/commands", |
| 182 "//ios/chrome/test:test_support", | 182 "//ios/chrome/test:test_support", |
| 183 "//ios/public/provider/chrome/browser/signin:test_support", | 183 "//ios/public/provider/chrome/browser/signin:test_support", |
| 184 "//ios/third_party/material_components_ios", | 184 "//ios/third_party/material_components_ios", |
| 185 "//ios/web:test_support", | 185 "//ios/web/public/test", |
| 186 "//testing/gtest", | 186 "//testing/gtest", |
| 187 "//third_party/ocmock", | 187 "//third_party/ocmock", |
| 188 "//ui/base", | 188 "//ui/base", |
| 189 ] | 189 ] |
| 190 } | 190 } |
| 191 | 191 |
| 192 source_set("eg_tests") { | 192 source_set("eg_tests") { |
| 193 configs += [ "//build/config/compiler:enable_arc" ] | 193 configs += [ "//build/config/compiler:enable_arc" ] |
| 194 testonly = true | 194 testonly = true |
| 195 sources = [ | 195 sources = [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 208 "//ios/chrome/browser/ui/tools_menu", | 208 "//ios/chrome/browser/ui/tools_menu", |
| 209 "//ios/chrome/test/app:test_support", | 209 "//ios/chrome/test/app:test_support", |
| 210 "//ios/chrome/test/earl_grey:test_support", | 210 "//ios/chrome/test/earl_grey:test_support", |
| 211 "//ios/public/provider/chrome/browser/signin:test_support", | 211 "//ios/public/provider/chrome/browser/signin:test_support", |
| 212 "//ios/testing:ios_test_support", | 212 "//ios/testing:ios_test_support", |
| 213 "//ios/testing/earl_grey:earl_grey_support", | 213 "//ios/testing/earl_grey:earl_grey_support", |
| 214 "//ios/third_party/earl_grey", | 214 "//ios/third_party/earl_grey", |
| 215 ] | 215 ] |
| 216 libs = [ "XCTest.framework" ] | 216 libs = [ "XCTest.framework" ] |
| 217 } | 217 } |
| OLD | NEW |