| 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("//ios/public/provider/chrome/browser/build_config.gni") |
| 6 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 7 | 8 |
| 8 test("ios_chrome_unittests") { | 9 test("ios_chrome_unittests") { |
| 9 deps = [ | 10 deps = [ |
| 10 # Ensure that all unit tests are run. | 11 # Ensure that all unit tests are run and packed resources available. |
| 11 "//ios/chrome/test:run_all_unittests", | 12 "//ios/chrome/test:run_all_unittests", |
| 13 ios_packed_resources_target, |
| 12 | 14 |
| 13 # Add unit_tests target here. | 15 # Add unit_tests target here. |
| 14 "//ios/chrome/app:unit_tests", | 16 "//ios/chrome/app:unit_tests", |
| 15 "//ios/chrome/app/application_delegate:unit_tests", | 17 "//ios/chrome/app/application_delegate:unit_tests", |
| 16 "//ios/chrome/browser:unit_tests", | 18 "//ios/chrome/browser:unit_tests", |
| 17 "//ios/chrome/browser/browsing_data:unit_tests", | 19 "//ios/chrome/browser/browsing_data:unit_tests", |
| 18 "//ios/chrome/browser/device_sharing:unit_tests", | 20 "//ios/chrome/browser/device_sharing:unit_tests", |
| 19 "//ios/chrome/browser/favicon:unit_tests", | 21 "//ios/chrome/browser/favicon:unit_tests", |
| 20 "//ios/chrome/browser/geolocation:unit_tests", | 22 "//ios/chrome/browser/geolocation:unit_tests", |
| 21 "//ios/chrome/browser/itunes_links:unit_tests", | 23 "//ios/chrome/browser/itunes_links:unit_tests", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 43 "//ios/chrome/browser/voice:unit_tests", | 45 "//ios/chrome/browser/voice:unit_tests", |
| 44 "//ios/chrome/browser/web_resource:unit_tests", | 46 "//ios/chrome/browser/web_resource:unit_tests", |
| 45 "//ios/chrome/common:unit_tests", | 47 "//ios/chrome/common:unit_tests", |
| 46 "//ios/chrome/test:unit_tests", | 48 "//ios/chrome/test:unit_tests", |
| 47 "//ios/chrome/test/base:unit_tests", | 49 "//ios/chrome/test/base:unit_tests", |
| 48 "//ios/web/public/image_fetcher:unit_tests", | 50 "//ios/web/public/image_fetcher:unit_tests", |
| 49 ] | 51 ] |
| 50 | 52 |
| 51 assert_no_deps = ios_assert_no_deps | 53 assert_no_deps = ios_assert_no_deps |
| 52 } | 54 } |
| OLD | NEW |