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

Side by Side Diff: ios/showcase/BUILD.gn

Issue 2800313002: [ios] RootCoordinator and view controller. (Closed)
Patch Set: Unittests, showcase, and clean up. Created 3 years, 8 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
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("//build/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 import("//ios/build/chrome_build.gni") 6 import("//ios/build/chrome_build.gni")
7 import("//ios/build/config.gni") 7 import("//ios/build/config.gni")
8 import("//ios/third_party/earl_grey/ios_eg_test.gni") 8 import("//ios/third_party/earl_grey/ios_eg_test.gni")
9 9
10 ios_app_bundle("showcase") { 10 ios_app_bundle("showcase") {
(...skipping 10 matching lines...) Expand all
21 ] 21 ]
22 bundle_deps = [ "//ios/showcase/core/resources" ] 22 bundle_deps = [ "//ios/showcase/core/resources" ]
23 assert_no_deps = ios_assert_no_deps 23 assert_no_deps = ios_assert_no_deps
24 } 24 }
25 25
26 group("features") { 26 group("features") {
27 deps = [ 27 deps = [
28 "//ios/clean/chrome/browser/ui/tools:tools_ui", 28 "//ios/clean/chrome/browser/ui/tools:tools_ui",
29 "//ios/showcase/content_suggestions", 29 "//ios/showcase/content_suggestions",
30 "//ios/showcase/payments", 30 "//ios/showcase/payments",
31 "//ios/showcase/root",
31 "//ios/showcase/settings", 32 "//ios/showcase/settings",
32 "//ios/showcase/tab", 33 "//ios/showcase/tab",
33 "//ios/showcase/tab_grid", 34 "//ios/showcase/tab_grid",
34 "//ios/showcase/toolbar", 35 "//ios/showcase/toolbar",
35 "//ios/showcase/uikit_table_view_cell", 36 "//ios/showcase/uikit_table_view_cell",
36 ] 37 ]
37 } 38 }
38 39
39 group("all_tests") { 40 group("all_tests") {
40 testonly = true 41 testonly = true
41 deps = [ 42 deps = [
42 ":ios_showcase_egtests", 43 ":ios_showcase_egtests",
43 ] 44 ]
44 } 45 }
45 46
46 ios_eg_test("ios_showcase_egtests") { 47 ios_eg_test("ios_showcase_egtests") {
47 info_plist = "core/Info.plist" 48 info_plist = "core/Info.plist"
48 extra_substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ] 49 extra_substitutions = [ "IOS_BUNDLE_ID_PREFIX=$ios_app_bundle_id_prefix" ]
49 deps = [ 50 deps = [
50 ":features", 51 ":features",
51 "//ios/showcase/core:main", 52 "//ios/showcase/core:main",
52 53
53 # Add all eg_tests targets below. 54 # Add all eg_tests targets below.
54 "//ios/showcase/content_suggestions:eg_tests", 55 "//ios/showcase/content_suggestions:eg_tests",
55 "//ios/showcase/core:eg_tests", 56 "//ios/showcase/core:eg_tests",
56 "//ios/showcase/payments:eg_tests", 57 "//ios/showcase/payments:eg_tests",
58 "//ios/showcase/root:eg_tests",
57 "//ios/showcase/tab:eg_tests", 59 "//ios/showcase/tab:eg_tests",
58 "//ios/showcase/tab_grid:eg_tests", 60 "//ios/showcase/tab_grid:eg_tests",
59 61
60 # All shared libraries must have the sanitizer deps to properly link in 62 # All shared libraries must have the sanitizer deps to properly link in
61 # asan mode (this target will be empty in other cases). 63 # asan mode (this target will be empty in other cases).
62 "//build/config/sanitizers:deps", 64 "//build/config/sanitizers:deps",
63 ] 65 ]
64 bundle_deps = [ "//ios/showcase/core/resources" ] 66 bundle_deps = [ "//ios/showcase/core/resources" ]
65 assert_no_deps = ios_assert_no_deps 67 assert_no_deps = ios_assert_no_deps
66 } 68 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698