Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: ios/chrome/browser/payments/BUILD.gn

Issue 2588913002: EarlGrey tests for Payment Request (base CL) (Closed)
Patch Set: Moved everything except the egtest upsream Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//ios/web/js_compile.gni") 5 import("//ios/web/js_compile.gni")
6 6
7 js_compile_checked("injected_js") { 7 js_compile_checked("injected_js") {
8 sources = [ 8 sources = [
9 "resources/payment_request_manager.js", 9 "resources/payment_request_manager.js",
10 ] 10 ]
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "//ios/chrome/app/strings", 76 "//ios/chrome/app/strings",
77 "//ios/chrome/browser/ui/collection_view:test_support", 77 "//ios/chrome/browser/ui/collection_view:test_support",
78 "//ios/chrome/browser/ui/collection_view/cells", 78 "//ios/chrome/browser/ui/collection_view/cells",
79 "//ios/chrome/browser/ui/collection_view/cells:test_support", 79 "//ios/chrome/browser/ui/collection_view/cells:test_support",
80 "//ios/chrome/test:test_support", 80 "//ios/chrome/test:test_support",
81 "//ios/third_party/material_components_ios", 81 "//ios/third_party/material_components_ios",
82 "//ios/web", 82 "//ios/web",
83 "//testing/gtest", 83 "//testing/gtest",
84 ] 84 ]
85 } 85 }
86
87 source_set("eg_tests") {
88 testonly = true
89 sources = [
90 "payment_request_egtest.mm",
91 ]
92
93 deps = [
94 "//base",
95 "//components/autofill/core/browser",
96 "//components/autofill/core/browser:test_support",
97 "//components/browsing_data/core",
98 "//ios/chrome/app/strings",
99 "//ios/chrome/test/app:test_support",
100 "//ios/chrome/test/earl_grey:test_support",
101 "//ios/public/provider/chrome/browser/signin:test_support",
102 "//ios/testing/earl_grey:earl_grey_support",
103 "//ios/third_party/earl_grey",
104 "//ios/third_party/material_components_ios",
105 "//ios/web",
106 "//ios/web:test_support",
107 "//net",
108 "//ui/base",
109 "//url",
110 ]
111 libs = [
112 "UIKit.framework",
113 "XCTest.framework",
114 ]
115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698