| 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 16 matching lines...) Expand all Loading... |
| 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/ntp", | 30 "//ios/showcase/ntp", |
| 31 "//ios/showcase/payments", | 31 "//ios/showcase/payments", |
| 32 "//ios/showcase/root", | 32 "//ios/showcase/root", |
| 33 "//ios/showcase/settings", | 33 "//ios/showcase/settings", |
| 34 "//ios/showcase/tab", | 34 "//ios/showcase/tab", |
| 35 "//ios/showcase/tab_grid", | 35 "//ios/showcase/tab_grid", |
| 36 "//ios/showcase/toolbar", | 36 "//ios/showcase/toolbar", |
| 37 "//ios/showcase/tools_menu", |
| 37 "//ios/showcase/uikit_table_view_cell", | 38 "//ios/showcase/uikit_table_view_cell", |
| 38 "//ios/showcase/widget", | 39 "//ios/showcase/widget", |
| 39 ] | 40 ] |
| 40 } | 41 } |
| 41 | 42 |
| 42 group("all_tests") { | 43 group("all_tests") { |
| 43 testonly = true | 44 testonly = true |
| 44 deps = [ | 45 deps = [ |
| 45 ":ios_showcase_egtests", | 46 ":ios_showcase_egtests", |
| 46 ] | 47 ] |
| (...skipping 14 matching lines...) Expand all Loading... |
| 61 "//ios/showcase/tab:eg_tests", | 62 "//ios/showcase/tab:eg_tests", |
| 62 "//ios/showcase/tab_grid:eg_tests", | 63 "//ios/showcase/tab_grid:eg_tests", |
| 63 | 64 |
| 64 # All shared libraries must have the sanitizer deps to properly link in | 65 # All shared libraries must have the sanitizer deps to properly link in |
| 65 # asan mode (this target will be empty in other cases). | 66 # asan mode (this target will be empty in other cases). |
| 66 "//build/config:exe_and_shlib_deps", | 67 "//build/config:exe_and_shlib_deps", |
| 67 ] | 68 ] |
| 68 bundle_deps = [ "//ios/showcase/core/resources" ] | 69 bundle_deps = [ "//ios/showcase/core/resources" ] |
| 69 assert_no_deps = ios_assert_no_deps | 70 assert_no_deps = ios_assert_no_deps |
| 70 } | 71 } |
| OLD | NEW |