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