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/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 Loading... |
21 ] | 21 ] |
22 bundle_deps = [ ":launchscreen_storyboard" ] | 22 bundle_deps = [ ":launchscreen_storyboard" ] |
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/chrome/browser/ui/tools:tools_ui", | 28 "//ios/chrome/browser/ui/tools:tools_ui", |
29 "//ios/showcase/settings", | 29 "//ios/showcase/settings", |
30 "//ios/showcase/strip", | 30 "//ios/showcase/strip", |
| 31 "//ios/showcase/suggestions", |
31 "//ios/showcase/tab_grid", | 32 "//ios/showcase/tab_grid", |
32 "//ios/showcase/uikit_table_view_cell", | 33 "//ios/showcase/uikit_table_view_cell", |
33 ] | 34 ] |
34 } | 35 } |
35 | 36 |
36 group("all_tests") { | 37 group("all_tests") { |
37 testonly = true | 38 testonly = true |
38 deps = [ | 39 deps = [ |
39 ":ios_showcase_egtests", | 40 ":ios_showcase_egtests", |
40 ] | 41 ] |
(...skipping 14 matching lines...) Expand all Loading... |
55 # asan mode (this target will be empty in other cases). | 56 # asan mode (this target will be empty in other cases). |
56 "//build/config/sanitizers:deps", | 57 "//build/config/sanitizers:deps", |
57 ] | 58 ] |
58 bundle_deps = [ ":launchscreen_storyboard" ] | 59 bundle_deps = [ ":launchscreen_storyboard" ] |
59 assert_no_deps = ios_assert_no_deps | 60 assert_no_deps = ios_assert_no_deps |
60 } | 61 } |
61 | 62 |
62 bundle_data_ib_file("launchscreen_storyboard") { | 63 bundle_data_ib_file("launchscreen_storyboard") { |
63 source = "core/LaunchScreen.storyboard" | 64 source = "core/LaunchScreen.storyboard" |
64 } | 65 } |
OLD | NEW |