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 # This list all targets that needs to be build as part of "gn_all" on iOS. | 5 # This list all targets that needs to be build as part of "gn_all" on iOS. |
6 # This list should generally only include executables, but since some code | 6 # This list should generally only include executables, but since some code |
7 # has not yet been upstreamed it will sometimes also include targets that | 7 # has not yet been upstreamed it will sometimes also include targets that |
8 # are not used upstream to ensure they are not broken inadvertently. | 8 # are not used upstream to ensure they are not broken inadvertently. |
9 group("all") { | 9 group("all") { |
10 testonly = true | 10 testonly = true |
(...skipping 11 matching lines...) Expand all Loading... |
22 "//ios/testing:ocmock_support_unittest", | 22 "//ios/testing:ocmock_support_unittest", |
23 "//ios/third_party/earl_grey", | 23 "//ios/third_party/earl_grey", |
24 "//ios/web:earl_grey_test_support", | 24 "//ios/web:earl_grey_test_support", |
25 "//ios/web:ios_web_inttests", | 25 "//ios/web:ios_web_inttests", |
26 "//ios/web:ios_web_unittests", | 26 "//ios/web:ios_web_unittests", |
27 "//ios/web/shell:ios_web_shell", | 27 "//ios/web/shell:ios_web_shell", |
28 "//ios/web/shell/test:ios_web_shell_test_host", | 28 "//ios/web/shell/test:ios_web_shell_test_host", |
29 ] | 29 ] |
30 | 30 |
31 if (!is_component_build) { | 31 if (!is_component_build) { |
32 deps += [ "//components/cronet/ios:cronet_package" ] | 32 deps += [ |
| 33 "//components/cronet/ios:cronet_package", |
| 34 "//ios/crnet:crnet_framework", |
| 35 ] |
33 } | 36 } |
34 } | 37 } |
OLD | NEW |