| 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 assert(!is_component_build, "component build is unsupported on iOS") | 5 assert(!is_component_build, "component build is unsupported on iOS") |
| 6 | 6 |
| 7 import("//ios/features.gni") | 7 import("//ios/features.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # TODO(brettw) bug 684096: Remove these. These are to prevent unused | 10 # TODO(brettw) bug 684096: Remove these. These are to prevent unused |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 group("all") { | 32 group("all") { |
| 33 testonly = true | 33 testonly = true |
| 34 if (is_cronet_build) { | 34 if (is_cronet_build) { |
| 35 deps = [ | 35 deps = [ |
| 36 "//components/cronet/ios:cronet_package", | 36 "//components/cronet/ios:cronet_package", |
| 37 "//ios/crnet:crnet_framework", | 37 "//ios/crnet:crnet_framework", |
| 38 "//ios/crnet/test:crnet_test", | 38 "//ios/crnet/test:crnet_test", |
| 39 ] | 39 ] |
| 40 } else { | 40 } else { |
| 41 deps = [ | 41 deps = [ |
| 42 # List all the targets that need to be build on iOS by default. | 42 # List all the targets that need to be built on iOS by default. |
| 43 "//ios/chrome/app:chrome", | 43 "//ios/chrome/app:chrome", |
| 44 "//ios/chrome/content_widget_extension", |
| 44 "//ios/chrome/search_widget_extension", | 45 "//ios/chrome/search_widget_extension", |
| 45 "//ios/chrome/share_extension", | 46 "//ios/chrome/share_extension", |
| 46 "//ios/chrome/today_extension", | 47 "//ios/chrome/today_extension", |
| 47 "//ios/clean/chrome/app:chrome_clean_skeleton", | 48 "//ios/clean/chrome/app:chrome_clean_skeleton", |
| 48 "//ios/showcase", | 49 "//ios/showcase", |
| 49 "//ios/web/shell:ios_web_shell", | 50 "//ios/web/shell:ios_web_shell", |
| 50 "//ios/web_view/shell:ios_web_view_shell", | 51 "//ios/web_view/shell:ios_web_view_shell", |
| 51 | 52 |
| 52 # List all the test targets that need to be build on iOS by default. | 53 # List all the test targets that need to be built on iOS by default. |
| 53 "//ios/chrome/test:all_tests", | 54 "//ios/chrome/test:all_tests", |
| 54 "//ios/chrome/test/earl_grey:all_tests", | 55 "//ios/chrome/test/earl_grey:all_tests", |
| 55 "//ios/clean/chrome/test:all_tests", | 56 "//ios/clean/chrome/test:all_tests", |
| 56 "//ios/components:all_tests", | 57 "//ios/components:all_tests", |
| 57 "//ios/net:all_tests", | 58 "//ios/net:all_tests", |
| 58 "//ios/showcase:all_tests", | 59 "//ios/showcase:all_tests", |
| 59 "//ios/testing:all_tests", | 60 "//ios/testing:all_tests", |
| 60 "//ios/web:all_tests", | 61 "//ios/web:all_tests", |
| 61 "//ios/web/shell/test:all_tests", | 62 "//ios/web/shell/test:all_tests", |
| 62 "//ios/web_view/shell/test:all_tests", | 63 "//ios/web_view/shell/test:all_tests", |
| 63 "//ios/web_view/test:all_tests", | 64 "//ios/web_view/test:all_tests", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| 66 } | 67 } |
| OLD | NEW |