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

Side by Side Diff: components/BUILD.gn

Issue 1251633002: Add BubbleManager to manage bubbles and ChromeBubbleManager for events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TESTS! Created 5 years, 4 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
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 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
11 # to reference the files so they can be compiled by the build system. 11 # to reference the files so they can be compiled by the build system.
12 group("all_components") { 12 group("all_components") {
13 testonly = true # You shouldn't actually link to this. 13 testonly = true # You shouldn't actually link to this.
14 visibility = [ "//:*" ] # Only for the root targets to bring in. 14 visibility = [ "//:*" ] # Only for the root targets to bring in.
15 15
16 deps = [ 16 deps = [
17 "//components/about_handler", 17 "//components/about_handler",
18 "//components/auto_login_parser", 18 "//components/auto_login_parser",
19 "//components/autofill/content/browser", 19 "//components/autofill/content/browser",
20 "//components/autofill/content/common", 20 "//components/autofill/content/common",
21 "//components/autofill/content/renderer", 21 "//components/autofill/content/renderer",
22 "//components/bookmarks/browser", 22 "//components/bookmarks/browser",
23 "//components/bookmarks/common", 23 "//components/bookmarks/common",
24 "//components/bookmarks/managed", 24 "//components/bookmarks/managed",
25 "//components/bookmarks/test", 25 "//components/bookmarks/test",
msw 2015/08/21 01:48:30 Add //components/bubble here
hcarmona 2015/08/25 02:13:36 Done.
26 "//components/captive_portal", 26 "//components/captive_portal",
27 "//components/cdm/browser", 27 "//components/cdm/browser",
28 "//components/cdm/common", 28 "//components/cdm/common",
29 "//components/cdm/renderer", 29 "//components/cdm/renderer",
30 "//components/cloud_devices/common", 30 "//components/cloud_devices/common",
31 "//components/chrome_apps", 31 "//components/chrome_apps",
32 "//components/component_updater", 32 "//components/component_updater",
33 "//components/content_settings/core/browser", 33 "//components/content_settings/core/browser",
34 "//components/content_settings/core/common", 34 "//components/content_settings/core/common",
35 "//components/crash/app", 35 "//components/crash/app",
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 # Add only ":unit_tests" dependencies here. If your tests have dependencies 290 # Add only ":unit_tests" dependencies here. If your tests have dependencies
291 # (this would at least include the component itself), they should be on the 291 # (this would at least include the component itself), they should be on the
292 # test source set and not here. 292 # test source set and not here.
293 deps = [ 293 deps = [
294 "//components/auto_login_parser:unit_tests", 294 "//components/auto_login_parser:unit_tests",
295 "//components/autofill/content/browser:unit_tests", 295 "//components/autofill/content/browser:unit_tests",
296 "//components/autofill/core/browser:unit_tests", 296 "//components/autofill/core/browser:unit_tests",
297 "//components/autofill/core/common:unit_tests", 297 "//components/autofill/core/common:unit_tests",
298 "//components/bookmarks/browser:unit_tests", 298 "//components/bookmarks/browser:unit_tests",
299 "//components/bookmarks/managed:unit_tests", 299 "//components/bookmarks/managed:unit_tests",
300 "//components/bubble:unit_tests",
300 "//components/captive_portal:unit_tests", 301 "//components/captive_portal:unit_tests",
301 "//components/cloud_devices/common:unit_tests", 302 "//components/cloud_devices/common:unit_tests",
302 "//components/component_updater:unit_tests", 303 "//components/component_updater:unit_tests",
303 "//components/content_settings/core/browser:unit_tests", 304 "//components/content_settings/core/browser:unit_tests",
304 "//components/content_settings/core/common:unit_tests", 305 "//components/content_settings/core/common:unit_tests",
305 "//components/crx_file:unit_tests", 306 "//components/crx_file:unit_tests",
306 "//components/data_reduction_proxy/content/browser:unit_tests", 307 "//components/data_reduction_proxy/content/browser:unit_tests",
307 "//components/data_reduction_proxy/core/browser:unit_tests", 308 "//components/data_reduction_proxy/core/browser:unit_tests",
308 "//components/data_reduction_proxy/core/common:unit_tests", 309 "//components/data_reduction_proxy/core/common:unit_tests",
309 "//components/device_event_log:unit_tests", 310 "//components/device_event_log:unit_tests",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 508
508 deps = [ 509 deps = [
509 "//base", 510 "//base",
510 "//base/test:test_support_perf", 511 "//base/test:test_support_perf",
511 "//testing/gtest", 512 "//testing/gtest",
512 "//testing/perf", 513 "//testing/perf",
513 "//content/test:test_support", 514 "//content/test:test_support",
514 "//components/visitedlink/browser", 515 "//components/visitedlink/browser",
515 ] 516 ]
516 } 517 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | components/OWNERS » ('j') | components/bubble.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698