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

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

Issue 2914703002: [Offline Prefetch] Backoff support for PrefetchBackgroundTask (Closed)
Patch Set: Fix trybots 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 "//extensions/features", 597 "//extensions/features",
598 "//printing/features", 598 "//printing/features",
599 "//rlz/features", 599 "//rlz/features",
600 ] 600 ]
601 deps = [ 601 deps = [
602 ":version_header", 602 ":version_header",
603 "//base", 603 "//base",
604 "//base/third_party/dynamic_annotations", 604 "//base/third_party/dynamic_annotations",
605 "//components/bookmarks/common", 605 "//components/bookmarks/common",
606 "//components/nacl/common:switches", 606 "//components/nacl/common:switches",
607 "//components/offline_pages/features",
607 "//media:cdm_paths", # Needed by chrome_paths.cc. 608 "//media:cdm_paths", # Needed by chrome_paths.cc.
608 "//media:media_features", 609 "//media:media_features",
609 "//ppapi/features", 610 "//ppapi/features",
610 "//third_party/widevine/cdm:headers", 611 "//third_party/widevine/cdm:headers",
611 ] 612 ]
612 613
613 if (is_android) { 614 if (is_android) {
614 # This dependency must only be added for Android. 615 # This dependency must only be added for Android.
615 # 616 #
616 # On Windows, //chrome/installer/util depends on this target to get 617 # On Windows, //chrome/installer/util depends on this target to get
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
747 748
748 mojom("page_load_metrics_mojom") { 749 mojom("page_load_metrics_mojom") {
749 sources = [ 750 sources = [
750 "page_load_metrics/page_load_metrics.mojom", 751 "page_load_metrics/page_load_metrics.mojom",
751 ] 752 ]
752 753
753 public_deps = [ 754 public_deps = [
754 "//mojo/common:common_custom_types", 755 "//mojo/common:common_custom_types",
755 ] 756 ]
756 } 757 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698