| 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 16 matching lines...) Expand all Loading... |
| 27 } else { | 27 } else { |
| 28 deps = [ | 28 deps = [ |
| 29 "//ios/chrome:ios_chrome_unittests", | 29 "//ios/chrome:ios_chrome_unittests", |
| 30 "//ios/chrome/app", | 30 "//ios/chrome/app", |
| 31 "//ios/chrome/common", | 31 "//ios/chrome/common", |
| 32 "//ios/chrome/common/physical_web", | 32 "//ios/chrome/common/physical_web", |
| 33 "//ios/chrome/share_extension:packed_resources", | 33 "//ios/chrome/share_extension:packed_resources", |
| 34 "//ios/chrome/today_extension:packed_resources", | 34 "//ios/chrome/today_extension:packed_resources", |
| 35 "//ios/net:ios_net_unittests", | 35 "//ios/net:ios_net_unittests", |
| 36 "//ios/public/provider/chrome/browser", | 36 "//ios/public/provider/chrome/browser", |
| 37 "//ios/public/provider/web", | |
| 38 "//ios/testing:ocmock_support_unittest", | 37 "//ios/testing:ocmock_support_unittest", |
| 39 "//ios/third_party/earl_grey", | 38 "//ios/third_party/earl_grey", |
| 40 "//ios/web:earl_grey_test_support", | 39 "//ios/web:earl_grey_test_support", |
| 41 "//ios/web:ios_web_inttests", | 40 "//ios/web:ios_web_inttests", |
| 42 "//ios/web:ios_web_unittests", | 41 "//ios/web:ios_web_unittests", |
| 43 "//ios/web/shell:ios_web_shell", | 42 "//ios/web/shell:ios_web_shell", |
| 44 "//ios/web/shell/test:ios_web_shell_egtests", | 43 "//ios/web/shell/test:ios_web_shell_egtests", |
| 45 ] | 44 ] |
| 46 } | 45 } |
| 47 } | 46 } |
| OLD | NEW |