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