| 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 declare_args() { | 7 declare_args() { |
| 8 # Control whether cronet is build (this is usually set by the script | 8 # Control whether cronet is build (this is usually set by the script |
| 9 # components/cronet/tools/cr_cronet.py as cronet requires specific | 9 # components/cronet/tools/cr_cronet.py as cronet requires specific |
| 10 # gn args to build correctly). | 10 # gn args to build correctly). |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 "//ios/crnet/crnet_consumer", | 24 "//ios/crnet/crnet_consumer", |
| 25 "//ios/crnet/test:crnet_test", | 25 "//ios/crnet/test:crnet_test", |
| 26 ] | 26 ] |
| 27 } else { | 27 } else { |
| 28 deps = [ | 28 deps = [ |
| 29 # List all the targets that need to be build on iOS by default. | 29 # List all the targets that need to be build on iOS by default. |
| 30 "//ios/chrome/app:chrome", | 30 "//ios/chrome/app:chrome", |
| 31 "//ios/clean/chrome/app:chrome_clean_skeleton", | 31 "//ios/clean/chrome/app:chrome_clean_skeleton", |
| 32 "//ios/showcase", | 32 "//ios/showcase", |
| 33 "//ios/web/shell:ios_web_shell", | 33 "//ios/web/shell:ios_web_shell", |
| 34 "//ios/web_view/shell:ios_web_view_shell", |
| 34 | 35 |
| 35 # List all the test targets that need to be build on iOS by default. | 36 # List all the test targets that need to be build on iOS by default. |
| 36 "//ios/chrome/test:all_tests", | 37 "//ios/chrome/test:all_tests", |
| 37 "//ios/chrome/test/earl_grey:all_tests", | 38 "//ios/chrome/test/earl_grey:all_tests", |
| 38 "//ios/clean/chrome/test:all_tests", | 39 "//ios/clean/chrome/test:all_tests", |
| 39 "//ios/net:all_tests", | 40 "//ios/net:all_tests", |
| 40 "//ios/showcase:all_tests", | 41 "//ios/showcase:all_tests", |
| 41 "//ios/testing:all_tests", | 42 "//ios/testing:all_tests", |
| 42 "//ios/web:all_tests", | 43 "//ios/web:all_tests", |
| 43 "//ios/web/shell/test:all_tests", | 44 "//ios/web/shell/test:all_tests", |
| 44 ] | 45 ] |
| 45 } | 46 } |
| 46 } | 47 } |
| OLD | NEW |