| OLD | NEW |
| 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) { |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 } | 12 } |
| 13 | 13 |
| 14 # Collection of all components. You wouldn't link to this, but this is rather | 14 # Collection of all components. You wouldn't link to this, but this is rather |
| 15 # to reference the files so they can be compiled by the build system. | 15 # to reference the files so they can be compiled by the build system. |
| 16 group("all_components") { | 16 group("all_components") { |
| 17 testonly = true # You shouldn't actually link to this. | 17 testonly = true # You shouldn't actually link to this. |
| 18 visibility = [ "//:*" ] # Only for the root targets to bring in. | 18 visibility = [ "//:*" ] # Only for the root targets to bring in. |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//components/bitmap_uploader", | |
| 22 "//components/bookmarks/browser", | 21 "//components/bookmarks/browser", |
| 23 "//components/bookmarks/common", | 22 "//components/bookmarks/common", |
| 24 "//components/bookmarks/managed", | 23 "//components/bookmarks/managed", |
| 25 "//components/bookmarks/test", | 24 "//components/bookmarks/test", |
| 26 "//components/browser_sync/common", | 25 "//components/browser_sync/common", |
| 27 "//components/bubble", | 26 "//components/bubble", |
| 28 "//components/captive_portal", | 27 "//components/captive_portal", |
| 29 "//components/chrome_apps", | 28 "//components/chrome_apps", |
| 30 "//components/component_updater", | 29 "//components/component_updater", |
| 31 "//components/compression", | 30 "//components/compression", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 42 "//components/strings", | 41 "//components/strings", |
| 43 "//components/leveldb_proto", | 42 "//components/leveldb_proto", |
| 44 "//components/pref_registry", | 43 "//components/pref_registry", |
| 45 "//components/omnibox/browser", | 44 "//components/omnibox/browser", |
| 46 "//components/infobars/core", | 45 "//components/infobars/core", |
| 47 "//components/version_ui", | 46 "//components/version_ui", |
| 48 ] | 47 ] |
| 49 | 48 |
| 50 if (!is_ios) { | 49 if (!is_ios) { |
| 51 deps += [ | 50 deps += [ |
| 51 "//components/bitmap_uploader", |
| 52 "//components/dom_distiller/core", | 52 "//components/dom_distiller/core", |
| 53 "//components/enhanced_bookmarks", | 53 "//components/enhanced_bookmarks", |
| 54 "//components/certificate_reporting", | 54 "//components/certificate_reporting", |
| 55 "//components/cdm/browser", | 55 "//components/cdm/browser", |
| 56 "//components/about_handler", | 56 "//components/about_handler", |
| 57 "//components/auto_login_parser", | 57 "//components/auto_login_parser", |
| 58 "//components/autofill/content/browser", | 58 "//components/autofill/content/browser", |
| 59 "//components/autofill/content/common", | 59 "//components/autofill/content/common", |
| 60 "//components/autofill/content/renderer", | 60 "//components/autofill/content/renderer", |
| 61 "//components/bubble", | 61 "//components/bubble", |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ] | 680 ] |
| 681 if (!is_ios) { | 681 if (!is_ios) { |
| 682 deps += [ | 682 deps += [ |
| 683 "//base", | 683 "//base", |
| 684 "//base/test:test_support_perf", | 684 "//base/test:test_support_perf", |
| 685 "//content/test:test_support", | 685 "//content/test:test_support", |
| 686 "//components/visitedlink/browser", | 686 "//components/visitedlink/browser", |
| 687 ] | 687 ] |
| 688 } | 688 } |
| 689 } | 689 } |
| OLD | NEW |