| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 test("ios_chrome_unittests") { | 8 test("ios_chrome_unittests") { |
| 9 deps = [ | 9 deps = [ |
| 10 # Ensure that all unit tests are run. | 10 # Ensure that all unit tests are run. |
| 11 "//ios/chrome/test:run_all_unittests", | 11 "//ios/chrome/test:run_all_unittests", |
| 12 | 12 |
| 13 # Ensure that packed resources are available (it should be a dependency | |
| 14 # of //ios/chrome/app however, Chrome on iOS uses different resources, | |
| 15 # so the dependency cannot be added there). | |
| 16 # TODO(crbug.com/653086): find a way to fix those dependency as part of | |
| 17 # building Chromium for iOS, and then remove the dependency. | |
| 18 "//ios/chrome/app/resources:packed_resources", | |
| 19 | |
| 20 # Add unit_tests target here. | 13 # Add unit_tests target here. |
| 21 "//ios/chrome/app:unit_tests", | 14 "//ios/chrome/app:unit_tests", |
| 22 "//ios/chrome/app/application_delegate:unit_tests", | 15 "//ios/chrome/app/application_delegate:unit_tests", |
| 23 "//ios/chrome/browser:unit_tests", | 16 "//ios/chrome/browser:unit_tests", |
| 24 "//ios/chrome/browser/browsing_data:unit_tests", | 17 "//ios/chrome/browser/browsing_data:unit_tests", |
| 25 "//ios/chrome/browser/device_sharing:unit_tests", | 18 "//ios/chrome/browser/device_sharing:unit_tests", |
| 26 "//ios/chrome/browser/favicon:unit_tests", | 19 "//ios/chrome/browser/favicon:unit_tests", |
| 27 "//ios/chrome/browser/geolocation:unit_tests", | 20 "//ios/chrome/browser/geolocation:unit_tests", |
| 28 "//ios/chrome/browser/itunes_links:unit_tests", | 21 "//ios/chrome/browser/itunes_links:unit_tests", |
| 29 "//ios/chrome/browser/metrics:unit_tests", | 22 "//ios/chrome/browser/metrics:unit_tests", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 50 "//ios/chrome/browser/voice:unit_tests", | 43 "//ios/chrome/browser/voice:unit_tests", |
| 51 "//ios/chrome/browser/web_resource:unit_tests", | 44 "//ios/chrome/browser/web_resource:unit_tests", |
| 52 "//ios/chrome/common:unit_tests", | 45 "//ios/chrome/common:unit_tests", |
| 53 "//ios/chrome/test:unit_tests", | 46 "//ios/chrome/test:unit_tests", |
| 54 "//ios/chrome/test/base:unit_tests", | 47 "//ios/chrome/test/base:unit_tests", |
| 55 "//ios/web/public/image_fetcher:unit_tests", | 48 "//ios/web/public/image_fetcher:unit_tests", |
| 56 ] | 49 ] |
| 57 | 50 |
| 58 assert_no_deps = ios_assert_no_deps | 51 assert_no_deps = ios_assert_no_deps |
| 59 } | 52 } |
| OLD | NEW |