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 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 group("features") { | 27 group("features") { |
28 deps = [ | 28 deps = [ |
29 "//ios/clean/chrome/browser/ui/tools:tools_ui", | 29 "//ios/clean/chrome/browser/ui/tools:tools_ui", |
30 "//ios/showcase/content_suggestions", | 30 "//ios/showcase/content_suggestions", |
31 "//ios/showcase/ntp", | 31 "//ios/showcase/ntp", |
32 "//ios/showcase/payments", | 32 "//ios/showcase/payments", |
33 "//ios/showcase/root", | 33 "//ios/showcase/root", |
34 "//ios/showcase/settings", | 34 "//ios/showcase/settings", |
35 "//ios/showcase/tab", | 35 "//ios/showcase/tab", |
36 "//ios/showcase/tab_grid", | 36 "//ios/showcase/tab_grid", |
| 37 "//ios/showcase/text_badge_view", |
37 "//ios/showcase/toolbar", | 38 "//ios/showcase/toolbar", |
38 "//ios/showcase/tools_menu", | 39 "//ios/showcase/tools_menu", |
39 "//ios/showcase/uikit_table_view_cell", | 40 "//ios/showcase/uikit_table_view_cell", |
40 "//ios/showcase/widget", | 41 "//ios/showcase/widget", |
41 ] | 42 ] |
42 } | 43 } |
43 | 44 |
44 group("all_tests") { | 45 group("all_tests") { |
45 testonly = true | 46 testonly = true |
46 deps = [ | 47 deps = [ |
(...skipping 20 matching lines...) Expand all Loading... |
67 ":packed_resources", | 68 ":packed_resources", |
68 "//ios/showcase/core:main", | 69 "//ios/showcase/core:main", |
69 | 70 |
70 # Add all eg_tests targets below. | 71 # Add all eg_tests targets below. |
71 "//ios/showcase/content_suggestions:eg_tests", | 72 "//ios/showcase/content_suggestions:eg_tests", |
72 "//ios/showcase/core:eg_tests", | 73 "//ios/showcase/core:eg_tests", |
73 "//ios/showcase/payments:eg_tests", | 74 "//ios/showcase/payments:eg_tests", |
74 "//ios/showcase/root:eg_tests", | 75 "//ios/showcase/root:eg_tests", |
75 "//ios/showcase/tab:eg_tests", | 76 "//ios/showcase/tab:eg_tests", |
76 "//ios/showcase/tab_grid:eg_tests", | 77 "//ios/showcase/tab_grid:eg_tests", |
| 78 "//ios/showcase/text_badge_view:eg_tests", |
77 "//ios/showcase/toolbar:eg_tests", | 79 "//ios/showcase/toolbar:eg_tests", |
78 | 80 |
79 # All shared libraries must have the sanitizer deps to properly link in | 81 # All shared libraries must have the sanitizer deps to properly link in |
80 # asan mode (this target will be empty in other cases). | 82 # asan mode (this target will be empty in other cases). |
81 "//build/config:exe_and_shlib_deps", | 83 "//build/config:exe_and_shlib_deps", |
82 ] | 84 ] |
83 bundle_deps = [ "//ios/showcase/core/resources" ] | 85 bundle_deps = [ "//ios/showcase/core/resources" ] |
84 assert_no_deps = ios_assert_no_deps | 86 assert_no_deps = ios_assert_no_deps |
85 } | 87 } |
OLD | NEW |