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

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

Issue 2881223002: Create chrome/browser/offline_pages to host browser-related parts of offline_pages whcih (Closed)
Patch Set: modified OWNERS and added DEPS Created 3 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/android/offline_pages/background_loader_offliner.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2095 matching lines...) Expand 10 before | Expand all | Expand 10 after
2106 deps += [ 2106 deps += [
2107 "//components/pdf/browser", 2107 "//components/pdf/browser",
2108 "//ppapi/features", 2108 "//ppapi/features",
2109 "//ppapi/proxy:ipc", 2109 "//ppapi/proxy:ipc",
2110 "//third_party/adobe/flash:flapper_version_h", 2110 "//third_party/adobe/flash:flapper_version_h",
2111 ] 2111 ]
2112 } 2112 }
2113 2113
2114 if (enable_offline_pages) { 2114 if (enable_offline_pages) {
2115 sources += [ 2115 sources += [
2116 "android/offline_pages/background_loader_offliner.cc",
2117 "android/offline_pages/background_loader_offliner.h",
2118 "android/offline_pages/background_scheduler_bridge.cc", 2116 "android/offline_pages/background_scheduler_bridge.cc",
2119 "android/offline_pages/background_scheduler_bridge.h", 2117 "android/offline_pages/background_scheduler_bridge.h",
2120 "android/offline_pages/downloads/offline_page_download_bridge.cc", 2118 "android/offline_pages/downloads/offline_page_download_bridge.cc",
2121 "android/offline_pages/downloads/offline_page_download_bridge.h", 2119 "android/offline_pages/downloads/offline_page_download_bridge.h",
2122 "android/offline_pages/downloads/offline_page_infobar_delegate.cc", 2120 "android/offline_pages/downloads/offline_page_infobar_delegate.cc",
2123 "android/offline_pages/downloads/offline_page_infobar_delegate.h", 2121 "android/offline_pages/downloads/offline_page_infobar_delegate.h",
2124 "android/offline_pages/downloads/offline_page_notification_bridge.cc", 2122 "android/offline_pages/downloads/offline_page_notification_bridge.cc",
2125 "android/offline_pages/downloads/offline_page_notification_bridge.h", 2123 "android/offline_pages/downloads/offline_page_notification_bridge.h",
2126 "android/offline_pages/downloads/resource_throttle.cc", 2124 "android/offline_pages/downloads/resource_throttle.cc",
2127 "android/offline_pages/downloads/resource_throttle.h", 2125 "android/offline_pages/downloads/resource_throttle.h",
(...skipping 22 matching lines...) Expand all
2150 "android/offline_pages/prerender_adapter.cc", 2148 "android/offline_pages/prerender_adapter.cc",
2151 "android/offline_pages/prerender_adapter.h", 2149 "android/offline_pages/prerender_adapter.h",
2152 "android/offline_pages/prerendering_loader.cc", 2150 "android/offline_pages/prerendering_loader.cc",
2153 "android/offline_pages/prerendering_loader.h", 2151 "android/offline_pages/prerendering_loader.h",
2154 "android/offline_pages/prerendering_offliner.cc", 2152 "android/offline_pages/prerendering_offliner.cc",
2155 "android/offline_pages/prerendering_offliner.h", 2153 "android/offline_pages/prerendering_offliner.h",
2156 "android/offline_pages/recent_tab_helper.cc", 2154 "android/offline_pages/recent_tab_helper.cc",
2157 "android/offline_pages/recent_tab_helper.h", 2155 "android/offline_pages/recent_tab_helper.h",
2158 "android/offline_pages/request_coordinator_factory.cc", 2156 "android/offline_pages/request_coordinator_factory.cc",
2159 "android/offline_pages/request_coordinator_factory.h", 2157 "android/offline_pages/request_coordinator_factory.h",
2158 "offline_pages/background_loader_offliner.cc",
2159 "offline_pages/background_loader_offliner.h",
2160 ] 2160 ]
2161 deps += [ 2161 deps += [
2162 "//components/offline_pages/content", 2162 "//components/offline_pages/content",
2163 "//components/offline_pages/content/background_loader", 2163 "//components/offline_pages/content/background_loader",
2164 "//components/offline_pages/core", 2164 "//components/offline_pages/core",
2165 "//components/offline_pages/core/background:background_offliner", 2165 "//components/offline_pages/core/background:background_offliner",
2166 "//components/offline_pages/core/downloads:offline_pages_ui_adapter", 2166 "//components/offline_pages/core/downloads:offline_pages_ui_adapter",
2167 "//components/offline_pages/core/prefetch", 2167 "//components/offline_pages/core/prefetch",
2168 "//components/offline_pages/core/recent_tabs", 2168 "//components/offline_pages/core/recent_tabs",
2169 "//components/offline_pages/core/request_header:request_header", 2169 "//components/offline_pages/core/request_header:request_header",
(...skipping 2559 matching lines...) Expand 10 before | Expand all | Expand 10 after
4729 "media/pepper_cdm_test_constants.cc", 4729 "media/pepper_cdm_test_constants.cc",
4730 "media/pepper_cdm_test_constants.h", 4730 "media/pepper_cdm_test_constants.h",
4731 ] 4731 ]
4732 } 4732 }
4733 } 4733 }
4734 4734
4735 service_manifest("preferences_forwarder_manifest") { 4735 service_manifest("preferences_forwarder_manifest") {
4736 name = "preferences_forwarder" 4736 name = "preferences_forwarder"
4737 source = "prefs/forwarder_manifest.json" 4737 source = "prefs/forwarder_manifest.json"
4738 } 4738 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/offline_pages/background_loader_offliner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698