OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 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 |
| 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. |
| 9 group("all") { |
| 10 testonly = true |
| 11 deps = [ |
| 12 "//ios/chrome:ios_chrome_unittests", |
| 13 "//ios/chrome/app", |
| 14 "//ios/chrome/browser", |
| 15 "//ios/chrome/common", |
| 16 "//ios/chrome/common/physical_web", |
| 17 "//ios/chrome/share_extension:packed_resources", |
| 18 "//ios/chrome/today_extension:packed_resources", |
| 19 "//ios/net:ios_net_unittests", |
| 20 "//ios/public/provider/chrome/browser", |
| 21 "//ios/public/provider/web", |
| 22 "//ios/testing:ocmock_support_unittest", |
| 23 "//ios/third_party/earl_grey", |
| 24 "//ios/web:ios_web_inttests", |
| 25 "//ios/web:ios_web_unittests", |
| 26 "//ios/web/shell:ios_web_shell", |
| 27 ] |
| 28 |
| 29 if (!is_component_build) { |
| 30 deps += [ "//components/cronet/ios:cronet_package" ] |
| 31 } |
| 32 } |
OLD | NEW |