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

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

Issue 2708943002: Create the BackgroundFetchBatchManager and initiate a download. (Closed)
Patch Set: Created 3 years, 10 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//ppapi/features/features.gni") 8 import("//ppapi/features/features.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/WebKit/public/public_features.gni") 10 import("//third_party/WebKit/public/public_features.gni")
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "appcache/appcache_update_job.cc", 309 "appcache/appcache_update_job.cc",
310 "appcache/appcache_update_job.h", 310 "appcache/appcache_update_job.h",
311 "appcache/appcache_url_request_job.cc", 311 "appcache/appcache_url_request_job.cc",
312 "appcache/appcache_url_request_job.h", 312 "appcache/appcache_url_request_job.h",
313 "appcache/appcache_working_set.cc", 313 "appcache/appcache_working_set.cc",
314 "appcache/appcache_working_set.h", 314 "appcache/appcache_working_set.h",
315 "appcache/chrome_appcache_service.cc", 315 "appcache/chrome_appcache_service.cc",
316 "appcache/chrome_appcache_service.h", 316 "appcache/chrome_appcache_service.h",
317 "audio_manager_thread.cc", 317 "audio_manager_thread.cc",
318 "audio_manager_thread.h", 318 "audio_manager_thread.h",
319 "background_fetch/background_fetch_batch_manager.cc",
320 "background_fetch/background_fetch_batch_manager.h",
319 "background_fetch/background_fetch_context.cc", 321 "background_fetch/background_fetch_context.cc",
320 "background_fetch/background_fetch_context.h", 322 "background_fetch/background_fetch_context.h",
321 "background_fetch/background_fetch_data_manager.cc", 323 "background_fetch/background_fetch_data_manager.cc",
322 "background_fetch/background_fetch_data_manager.h", 324 "background_fetch/background_fetch_data_manager.h",
325 "background_fetch/batch_request.cc",
326 "background_fetch/batch_request.h",
Peter Beverloo 2017/02/23 12:14:55 These files aren't included in this CL?
harkness 2017/02/23 17:08:40 Added them. Unfortunately, because they weren't ad
323 "background_fetch/fetch_request.cc", 327 "background_fetch/fetch_request.cc",
324 "background_fetch/fetch_request.h", 328 "background_fetch/fetch_request.h",
325 "background_sync/background_sync_context.cc", 329 "background_sync/background_sync_context.cc",
326 "background_sync/background_sync_context.h", 330 "background_sync/background_sync_context.h",
327 "background_sync/background_sync_manager.cc", 331 "background_sync/background_sync_manager.cc",
328 "background_sync/background_sync_manager.h", 332 "background_sync/background_sync_manager.h",
329 "background_sync/background_sync_metrics.cc", 333 "background_sync/background_sync_metrics.cc",
330 "background_sync/background_sync_metrics.h", 334 "background_sync/background_sync_metrics.h",
331 "background_sync/background_sync_network_observer.cc", 335 "background_sync/background_sync_network_observer.cc",
332 "background_sync/background_sync_network_observer.h", 336 "background_sync/background_sync_network_observer.h",
(...skipping 1684 matching lines...) Expand 10 before | Expand all | Expand 10 after
2017 if (!is_component_build) { 2021 if (!is_component_build) {
2018 public_deps = [ 2022 public_deps = [
2019 ":browser", 2023 ":browser",
2020 ] 2024 ]
2021 } else { 2025 } else {
2022 public_deps = [ 2026 public_deps = [
2023 "//third_party/leveldatabase", 2027 "//third_party/leveldatabase",
2024 ] 2028 ]
2025 } 2029 }
2026 } 2030 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698