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

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

Issue 2777063008: Connect BackgroundFetch to the OfflineItemCollection
Patch Set: Added BackgroundFetchClientProxy to proxy calls to and from the Context. Created 3 years, 8 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/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//gpu/vulkan/features.gni") 7 import("//gpu/vulkan/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//ppapi/features/features.gni") 9 import("//ppapi/features/features.gni")
10 import("//printing/features/features.gni") 10 import("//printing/features/features.gni")
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 "appcache/appcache_update_job.cc", 317 "appcache/appcache_update_job.cc",
318 "appcache/appcache_update_job.h", 318 "appcache/appcache_update_job.h",
319 "appcache/appcache_url_request_job.cc", 319 "appcache/appcache_url_request_job.cc",
320 "appcache/appcache_url_request_job.h", 320 "appcache/appcache_url_request_job.h",
321 "appcache/appcache_working_set.cc", 321 "appcache/appcache_working_set.cc",
322 "appcache/appcache_working_set.h", 322 "appcache/appcache_working_set.h",
323 "appcache/chrome_appcache_service.cc", 323 "appcache/chrome_appcache_service.cc",
324 "appcache/chrome_appcache_service.h", 324 "appcache/chrome_appcache_service.h",
325 "audio_manager_thread.cc", 325 "audio_manager_thread.cc",
326 "audio_manager_thread.h", 326 "audio_manager_thread.h",
327 "background_fetch/background_fetch_client_proxy.cc",
328 "background_fetch/background_fetch_client_proxy.h",
327 "background_fetch/background_fetch_context.cc", 329 "background_fetch/background_fetch_context.cc",
328 "background_fetch/background_fetch_context.h", 330 "background_fetch/background_fetch_context.h",
329 "background_fetch/background_fetch_data_manager.cc", 331 "background_fetch/background_fetch_data_manager.cc",
330 "background_fetch/background_fetch_data_manager.h", 332 "background_fetch/background_fetch_data_manager.h",
331 "background_fetch/background_fetch_event_dispatcher.cc", 333 "background_fetch/background_fetch_event_dispatcher.cc",
332 "background_fetch/background_fetch_event_dispatcher.h", 334 "background_fetch/background_fetch_event_dispatcher.h",
333 "background_fetch/background_fetch_job_controller.cc", 335 "background_fetch/background_fetch_job_controller.cc",
334 "background_fetch/background_fetch_job_controller.h", 336 "background_fetch/background_fetch_job_controller.h",
335 "background_fetch/background_fetch_job_info.cc", 337 "background_fetch/background_fetch_job_info.cc",
336 "background_fetch/background_fetch_job_info.h", 338 "background_fetch/background_fetch_job_info.h",
(...skipping 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after
2057 if (!is_component_build) { 2059 if (!is_component_build) {
2058 public_deps = [ 2060 public_deps = [
2059 ":browser", 2061 ":browser",
2060 ] 2062 ]
2061 } else { 2063 } else {
2062 public_deps = [ 2064 public_deps = [
2063 "//third_party/leveldatabase", 2065 "//third_party/leveldatabase",
2064 ] 2066 ]
2065 } 2067 }
2066 } 2068 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698