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

Side by Side Diff: ios/third_party/earl_grey/ios_eg_test.gni

Issue 2173493002: Convert ios_web_shell_test to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@eg-tests-deps
Patch Set: Sync //ios/web/shell/test:earl_grey_test_support with gyp. Created 4 years, 5 months 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
« no previous file with comments | « ios/third_party/earl_grey/BUILD.gn ('k') | ios/web/ios_web_shell_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/ios/rules.gni")
6
7 # EarlGrey tests are just XCTests that also depends on EarlGrey.
8 template("ios_eg_test") {
9 ios_xctest_test(target_name) {
10 forward_variables_from(invoker, "*")
11 if (!defined(bundle_deps)) {
12 bundle_deps = []
13 }
14 bundle_deps += [
15 "//ios/third_party/earl_grey:earl_grey+bundle",
16 "//ios/third_party/ochamcrest:ochamcrest+bundle",
17 ]
18 if (!defined(deps)) {
19 deps = []
20 }
21 deps += [
22 "//ios/third_party/earl_grey:earl_grey+link",
23 "//ios/third_party/ochamcrest:ochamcrest+link",
24 ]
25 }
26 }
27
28 set_defaults("ios_eg_test") {
29 configs = default_executable_configs
30 }
OLDNEW
« no previous file with comments | « ios/third_party/earl_grey/BUILD.gn ('k') | ios/web/ios_web_shell_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698