| 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 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 603 "//extensions/features", | 603 "//extensions/features", |
| 604 "//printing/features", | 604 "//printing/features", |
| 605 "//rlz/features", | 605 "//rlz/features", |
| 606 ] | 606 ] |
| 607 deps = [ | 607 deps = [ |
| 608 ":version_header", | 608 ":version_header", |
| 609 "//base", | 609 "//base", |
| 610 "//base/third_party/dynamic_annotations", | 610 "//base/third_party/dynamic_annotations", |
| 611 "//components/bookmarks/common", | 611 "//components/bookmarks/common", |
| 612 "//components/nacl/common:switches", | 612 "//components/nacl/common:switches", |
| 613 "//components/offline_pages/features", |
| 613 "//media:cdm_paths", # Needed by chrome_paths.cc. | 614 "//media:cdm_paths", # Needed by chrome_paths.cc. |
| 614 "//media:media_features", | 615 "//media:media_features", |
| 615 "//ppapi/features", | 616 "//ppapi/features", |
| 616 "//third_party/widevine/cdm:headers", | 617 "//third_party/widevine/cdm:headers", |
| 617 ] | 618 ] |
| 618 | 619 |
| 619 if (is_android) { | 620 if (is_android) { |
| 620 # This dependency must only be added for Android. | 621 # This dependency must only be added for Android. |
| 621 # | 622 # |
| 622 # On Windows, //chrome/installer/util depends on this target to get | 623 # On Windows, //chrome/installer/util depends on this target to get |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 767 | 768 |
| 768 mojom("page_load_metrics_mojom") { | 769 mojom("page_load_metrics_mojom") { |
| 769 sources = [ | 770 sources = [ |
| 770 "page_load_metrics/page_load_metrics.mojom", | 771 "page_load_metrics/page_load_metrics.mojom", |
| 771 ] | 772 ] |
| 772 | 773 |
| 773 public_deps = [ | 774 public_deps = [ |
| 774 "//mojo/common:common_custom_types", | 775 "//mojo/common:common_custom_types", |
| 775 ] | 776 ] |
| 776 } | 777 } |
| OLD | NEW |