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

Side by Side Diff: components/BUILD.gn

Issue 1284173003: Create a about handler component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/auto_login_parser", 18 "//components/auto_login_parser",
18 "//components/autofill/content/browser", 19 "//components/autofill/content/browser",
19 "//components/autofill/content/common", 20 "//components/autofill/content/common",
20 "//components/autofill/content/renderer", 21 "//components/autofill/content/renderer",
21 "//components/bookmarks/browser", 22 "//components/bookmarks/browser",
22 "//components/bookmarks/common", 23 "//components/bookmarks/common",
23 "//components/bookmarks/managed", 24 "//components/bookmarks/managed",
24 "//components/bookmarks/test", 25 "//components/bookmarks/test",
25 "//components/captive_portal", 26 "//components/captive_portal",
26 "//components/cdm/browser", 27 "//components/cdm/browser",
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 "//components/upload_list:unit_tests", 329 "//components/upload_list:unit_tests",
329 "//components/user_prefs/tracked:unit_tests", 330 "//components/user_prefs/tracked:unit_tests",
330 "//components/variations:unit_tests", 331 "//components/variations:unit_tests",
331 "//components/web_resource:unit_tests", 332 "//components/web_resource:unit_tests",
332 "//components/webcrypto:unit_tests", 333 "//components/webcrypto:unit_tests",
333 "//components/webdata/common:unit_tests", 334 "//components/webdata/common:unit_tests",
334 335
335 # These are the deps required by the code in this target. 336 # These are the deps required by the code in this target.
336 "//base", 337 "//base",
337 "//base/test:test_support", 338 "//base/test:test_support",
339 "//components/about_handler",
droger 2015/08/12 13:03:25 I think this is not needed, can you remove it?
Jitu( very slow this week) 2015/08/12 14:34:17 Done.
338 "//components/policy:policy_component", 340 "//components/policy:policy_component",
339 "//content/test:test_support", 341 "//content/test:test_support",
340 "//net", 342 "//net",
341 "//ui/base", 343 "//ui/base",
342 "//ui/resources:ui_test_pak", 344 "//ui/resources:ui_test_pak",
343 ] 345 ]
344 346
345 data_deps = [ 347 data_deps = [
346 ":components_tests_pak", 348 ":components_tests_pak",
347 "//third_party/mesa:osmesa", 349 "//third_party/mesa:osmesa",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 504
503 deps = [ 505 deps = [
504 "//base", 506 "//base",
505 "//base/test:test_support_perf", 507 "//base/test:test_support_perf",
506 "//testing/gtest", 508 "//testing/gtest",
507 "//testing/perf", 509 "//testing/perf",
508 "//content/test:test_support", 510 "//content/test:test_support",
509 "//components/visitedlink/browser", 511 "//components/visitedlink/browser",
510 ] 512 ]
511 } 513 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698