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

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

Issue 2484703003: [ios] Adds code to support the iOS Handoff feature. (Closed)
Patch Set: Review. 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
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 13 # Ensure that packed resources are available (it should be a dependency
14 # of //ios/chrome/app however, Chrome on iOS uses different resources, 14 # of //ios/chrome/app however, Chrome on iOS uses different resources,
15 # so the dependency cannot be added there). 15 # so the dependency cannot be added there).
16 # TODO(crbug.com/653086): find a way to fix those dependency as part of 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. 17 # building Chromium for iOS, and then remove the dependency.
18 "//ios/chrome/app/resources:packed_resources", 18 "//ios/chrome/app/resources:packed_resources",
19 19
20 # Add unit_tests target here. 20 # Add unit_tests target here.
21 "//ios/chrome/app:unit_tests", 21 "//ios/chrome/app:unit_tests",
22 "//ios/chrome/app/application_delegate:unit_tests", 22 "//ios/chrome/app/application_delegate:unit_tests",
23 "//ios/chrome/browser:unit_tests", 23 "//ios/chrome/browser:unit_tests",
24 "//ios/chrome/browser/browsing_data:unit_tests", 24 "//ios/chrome/browser/browsing_data:unit_tests",
25 "//ios/chrome/browser/device_sharing:unit_tests",
25 "//ios/chrome/browser/favicon:unit_tests", 26 "//ios/chrome/browser/favicon:unit_tests",
26 "//ios/chrome/browser/geolocation:unit_tests", 27 "//ios/chrome/browser/geolocation:unit_tests",
27 "//ios/chrome/browser/itunes_links:unit_tests", 28 "//ios/chrome/browser/itunes_links:unit_tests",
28 "//ios/chrome/browser/metrics:unit_tests", 29 "//ios/chrome/browser/metrics:unit_tests",
29 "//ios/chrome/browser/net:unit_tests", 30 "//ios/chrome/browser/net:unit_tests",
30 "//ios/chrome/browser/passwords:unit_tests", 31 "//ios/chrome/browser/passwords:unit_tests",
31 "//ios/chrome/browser/reading_list:unit_tests", 32 "//ios/chrome/browser/reading_list:unit_tests",
32 "//ios/chrome/browser/snapshots:unit_tests", 33 "//ios/chrome/browser/snapshots:unit_tests",
33 "//ios/chrome/browser/ssl:unit_tests", 34 "//ios/chrome/browser/ssl:unit_tests",
34 "//ios/chrome/browser/suggestions:unit_tests", 35 "//ios/chrome/browser/suggestions:unit_tests",
(...skipping 10 matching lines...) Expand all
45 "//ios/chrome/browser/update_client:unit_tests", 46 "//ios/chrome/browser/update_client:unit_tests",
46 "//ios/chrome/browser/voice:unit_tests", 47 "//ios/chrome/browser/voice:unit_tests",
47 "//ios/chrome/browser/web_resource:unit_tests", 48 "//ios/chrome/browser/web_resource:unit_tests",
48 "//ios/chrome/browser/webp_transcode:unit_tests", 49 "//ios/chrome/browser/webp_transcode:unit_tests",
49 "//ios/chrome/common:unit_tests", 50 "//ios/chrome/common:unit_tests",
50 "//ios/chrome/test:unit_tests", 51 "//ios/chrome/test:unit_tests",
51 ] 52 ]
52 53
53 assert_no_deps = ios_assert_no_deps 54 assert_no_deps = ios_assert_no_deps
54 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698