| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//ios/chrome/today_extension", | 44 "//ios/chrome/today_extension", |
| 45 "//ios/clean/chrome/app:chrome_clean_skeleton", | 45 "//ios/clean/chrome/app:chrome_clean_skeleton", |
| 46 "//ios/showcase", | 46 "//ios/showcase", |
| 47 "//ios/web/shell:ios_web_shell", | 47 "//ios/web/shell:ios_web_shell", |
| 48 "//ios/web_view/shell:ios_web_view_shell", | 48 "//ios/web_view/shell:ios_web_view_shell", |
| 49 | 49 |
| 50 # List all the test targets that need to be build on iOS by default. | 50 # List all the test targets that need to be build on iOS by default. |
| 51 "//ios/chrome/test:all_tests", | 51 "//ios/chrome/test:all_tests", |
| 52 "//ios/chrome/test/earl_grey:all_tests", | 52 "//ios/chrome/test/earl_grey:all_tests", |
| 53 "//ios/clean/chrome/test:all_tests", | 53 "//ios/clean/chrome/test:all_tests", |
| 54 "//ios/components:all_tests", |
| 54 "//ios/net:all_tests", | 55 "//ios/net:all_tests", |
| 55 "//ios/showcase:all_tests", | 56 "//ios/showcase:all_tests", |
| 56 "//ios/testing:all_tests", | 57 "//ios/testing:all_tests", |
| 57 "//ios/web:all_tests", | 58 "//ios/web:all_tests", |
| 58 "//ios/web/shell/test:all_tests", | 59 "//ios/web/shell/test:all_tests", |
| 59 "//ios/web_view/shell/test:all_tests", | 60 "//ios/web_view/shell/test:all_tests", |
| 60 "//ios/web_view/test:all_tests", | 61 "//ios/web_view/test:all_tests", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 } | 64 } |
| OLD | NEW |