Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: ios/chrome/BUILD.gn

Issue 2467283005: Add missing dependency on packed resources to ios_chrome_unittests. (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
13 # Add unit_tests target here. 20 # Add unit_tests target here.
14 "//ios/chrome/app:unit_tests", 21 "//ios/chrome/app:unit_tests",
15 "//ios/chrome/app/application_delegate:unit_tests", 22 "//ios/chrome/app/application_delegate:unit_tests",
16 "//ios/chrome/browser:unit_tests", 23 "//ios/chrome/browser:unit_tests",
17 "//ios/chrome/browser/browsing_data:unit_tests", 24 "//ios/chrome/browser/browsing_data:unit_tests",
18 "//ios/chrome/browser/favicon:unit_tests", 25 "//ios/chrome/browser/favicon:unit_tests",
19 "//ios/chrome/browser/geolocation:unit_tests", 26 "//ios/chrome/browser/geolocation:unit_tests",
20 "//ios/chrome/browser/itunes_links:unit_tests", 27 "//ios/chrome/browser/itunes_links:unit_tests",
21 "//ios/chrome/browser/metrics:unit_tests", 28 "//ios/chrome/browser/metrics:unit_tests",
22 "//ios/chrome/browser/net:unit_tests", 29 "//ios/chrome/browser/net:unit_tests",
(...skipping 11 matching lines...) Expand all
34 "//ios/chrome/browser/ui/keyboard:unit_tests", 41 "//ios/chrome/browser/ui/keyboard:unit_tests",
35 "//ios/chrome/browser/update_client:unit_tests", 42 "//ios/chrome/browser/update_client:unit_tests",
36 "//ios/chrome/browser/web_resource:unit_tests", 43 "//ios/chrome/browser/web_resource:unit_tests",
37 "//ios/chrome/browser/webp_transcode:unit_tests", 44 "//ios/chrome/browser/webp_transcode:unit_tests",
38 "//ios/chrome/common:unit_tests", 45 "//ios/chrome/common:unit_tests",
39 "//ios/chrome/test:unit_tests", 46 "//ios/chrome/test:unit_tests",
40 ] 47 ]
41 48
42 assert_no_deps = ios_assert_no_deps 49 assert_no_deps = ios_assert_no_deps
43 } 50 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698