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

Side by Side Diff: components/BUILD.gn

Issue 2104203003: GN: chromeos: Add missing components tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 months 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 | components/policy/core/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 # Add only ":unit_tests" dependencies here. If your tests have dependencies 53 # Add only ":unit_tests" dependencies here. If your tests have dependencies
54 # (this would at least include the component itself), they should be on the 54 # (this would at least include the component itself), they should be on the
55 # test source set and not here. 55 # test source set and not here.
56 56
57 deps = [ 57 deps = [
58 "//base", 58 "//base",
59 "//base/test:test_support", 59 "//base/test:test_support",
60 "//components/auto_login_parser:unit_tests", 60 "//components/auto_login_parser:unit_tests",
61 "//components/autofill/core/browser:unit_tests", 61 "//components/autofill/core/browser:unit_tests",
62 "//components/autofill/core/common:unit_tests", 62 "//components/autofill/core/common:unit_tests",
63 "//components/base32:unit_tests",
63 "//components/bookmarks/browser:unit_tests", 64 "//components/bookmarks/browser:unit_tests",
64 "//components/bookmarks/managed:unit_tests", 65 "//components/bookmarks/managed:unit_tests",
65 "//components/browser_sync/browser:unit_tests", 66 "//components/browser_sync/browser:unit_tests",
66 "//components/browsing_data_ui:unit_tests", 67 "//components/browsing_data_ui:unit_tests",
67 "//components/bubble:unit_tests", 68 "//components/bubble:unit_tests",
68 "//components/captive_portal:unit_tests", 69 "//components/captive_portal:unit_tests",
69 "//components/certificate_reporting:unit_tests", 70 "//components/certificate_reporting:unit_tests",
70 "//components/client_update_protocol:unit_tests", 71 "//components/client_update_protocol:unit_tests",
71 "//components/cloud_devices/common:unit_tests", 72 "//components/cloud_devices/common:unit_tests",
72 "//components/component_updater:unit_tests", 73 "//components/component_updater:unit_tests",
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 "//components/proximity_auth:unit_tests", 269 "//components/proximity_auth:unit_tests",
269 "//components/storage_monitor:unit_tests", 270 "//components/storage_monitor:unit_tests",
270 "//components/web_modal:unit_tests", 271 "//components/web_modal:unit_tests",
271 "//components/webusb:unit_tests", 272 "//components/webusb:unit_tests",
272 ] 273 ]
273 } 274 }
274 275
275 if (enable_rlz_support) { 276 if (enable_rlz_support) {
276 deps += [ "//components/rlz:unit_tests" ] 277 deps += [ "//components/rlz:unit_tests" ]
277 } 278 }
279
278 if (is_chromeos) { 280 if (is_chromeos) {
279 deps += [ 281 deps += [
280 "//components/arc:unit_tests", 282 "//components/arc:unit_tests",
281 "//components/ownership:unit_tests", 283 "//components/ownership:unit_tests",
284 "//components/pairing:unit_tests",
285 "//components/timers:unit_tests",
282 "//components/user_manager:unit_tests", 286 "//components/user_manager:unit_tests",
287 "//components/wifi_sync:unit_tests",
283 ] 288 ]
284 } 289 }
285 290
286 if (enable_configuration_policy) { 291 if (enable_configuration_policy) {
287 deps += [ 292 deps += [
288 "//components/policy/core/browser:unit_tests", 293 "//components/policy/core/browser:unit_tests",
289 "//components/policy/core/common:unit_tests", 294 "//components/policy/core/common:unit_tests",
290 ] 295 ]
291 } 296 }
292 297
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 "//base/test:test_support_perf", 495 "//base/test:test_support_perf",
491 "//components/scheduler", 496 "//components/scheduler",
492 "//components/visitedlink/browser", 497 "//components/visitedlink/browser",
493 "//content/test:test_support", 498 "//content/test:test_support",
494 "//testing/gtest", 499 "//testing/gtest",
495 "//testing/perf", 500 "//testing/perf",
496 "//url", 501 "//url",
497 ] 502 ]
498 } 503 }
499 } 504 }
OLDNEW
« no previous file with comments | « no previous file | components/policy/core/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698