| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
| 9 import("//extensions/features/features.gni") | 9 import("//extensions/features/features.gni") |
| 10 import("//mojo/public/tools/bindings/mojom.gni") | 10 import("//mojo/public/tools/bindings/mojom.gni") |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "//extensions/features", | 601 "//extensions/features", |
| 602 "//printing/features", | 602 "//printing/features", |
| 603 "//rlz/features", | 603 "//rlz/features", |
| 604 ] | 604 ] |
| 605 deps = [ | 605 deps = [ |
| 606 ":version_header", | 606 ":version_header", |
| 607 "//base", | 607 "//base", |
| 608 "//base/third_party/dynamic_annotations", | 608 "//base/third_party/dynamic_annotations", |
| 609 "//components/bookmarks/common", | 609 "//components/bookmarks/common", |
| 610 "//components/nacl/common:switches", | 610 "//components/nacl/common:switches", |
| 611 "//components/offline_pages/features", |
| 611 "//media:cdm_paths", # Needed by chrome_paths.cc. | 612 "//media:cdm_paths", # Needed by chrome_paths.cc. |
| 612 "//media:media_features", | 613 "//media:media_features", |
| 613 "//ppapi/features", | 614 "//ppapi/features", |
| 614 "//third_party/widevine/cdm:headers", | 615 "//third_party/widevine/cdm:headers", |
| 615 ] | 616 ] |
| 616 | 617 |
| 617 if (is_android) { | 618 if (is_android) { |
| 618 # This dependency must only be added for Android. | 619 # This dependency must only be added for Android. |
| 619 # | 620 # |
| 620 # On Windows, //chrome/installer/util depends on this target to get | 621 # On Windows, //chrome/installer/util depends on this target to get |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 | 752 |
| 752 mojom("page_load_metrics_mojom") { | 753 mojom("page_load_metrics_mojom") { |
| 753 sources = [ | 754 sources = [ |
| 754 "page_load_metrics/page_load_metrics.mojom", | 755 "page_load_metrics/page_load_metrics.mojom", |
| 755 ] | 756 ] |
| 756 | 757 |
| 757 public_deps = [ | 758 public_deps = [ |
| 758 "//mojo/common:common_custom_types", | 759 "//mojo/common:common_custom_types", |
| 759 ] | 760 ] |
| 760 } | 761 } |
| OLD | NEW |