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

Side by Side Diff: chrome/common/BUILD.gn

Issue 2914703002: [Offline Prefetch] Backoff support for PrefetchBackgroundTask (Closed)
Patch Set: Address feedback Created 3 years, 6 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/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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698