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 |
11 deps = [ | 11 deps = [ |
12 "//ios/chrome:ios_chrome_unittests", | 12 "//ios/chrome:ios_chrome_unittests", |
13 "//ios/chrome/app", | 13 "//ios/chrome/app", |
14 "//ios/chrome/browser", | 14 "//ios/chrome/browser", |
15 "//ios/chrome/common", | 15 "//ios/chrome/common", |
16 "//ios/chrome/common/physical_web", | 16 "//ios/chrome/common/physical_web", |
17 "//ios/chrome/share_extension:packed_resources", | 17 "//ios/chrome/share_extension:packed_resources", |
18 "//ios/chrome/today_extension:packed_resources", | 18 "//ios/chrome/today_extension:packed_resources", |
19 "//ios/net:ios_net_unittests", | 19 "//ios/net:ios_net_unittests", |
20 "//ios/public/provider/chrome/browser", | 20 "//ios/public/provider/chrome/browser", |
21 "//ios/public/provider/web", | 21 "//ios/public/provider/web", |
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:ios_web_inttests", | 24 "//ios/web:ios_web_inttests", |
25 "//ios/web:ios_web_unittests", | 25 "//ios/web:ios_web_unittests", |
26 "//ios/web/shell:ios_web_shell", | 26 "//ios/web/shell:ios_web_shell", |
| 27 "//ios/web/shell/test:ios_web_shell_test_host", |
27 ] | 28 ] |
28 | 29 |
29 if (!is_component_build) { | 30 if (!is_component_build) { |
30 deps += [ "//components/cronet/ios:cronet_package" ] | 31 deps += [ "//components/cronet/ios:cronet_package" ] |
31 } | 32 } |
32 } | 33 } |
OLD | NEW |