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

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

Issue 2748213003: Service Worker event dispatcher for Background Fetch (Closed)
Patch Set: uma fix Created 3 years, 9 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 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 "appcache/appcache_working_set.cc", 323 "appcache/appcache_working_set.cc",
324 "appcache/appcache_working_set.h", 324 "appcache/appcache_working_set.h",
325 "appcache/chrome_appcache_service.cc", 325 "appcache/chrome_appcache_service.cc",
326 "appcache/chrome_appcache_service.h", 326 "appcache/chrome_appcache_service.h",
327 "audio_manager_thread.cc", 327 "audio_manager_thread.cc",
328 "audio_manager_thread.h", 328 "audio_manager_thread.h",
329 "background_fetch/background_fetch_context.cc", 329 "background_fetch/background_fetch_context.cc",
330 "background_fetch/background_fetch_context.h", 330 "background_fetch/background_fetch_context.h",
331 "background_fetch/background_fetch_data_manager.cc", 331 "background_fetch/background_fetch_data_manager.cc",
332 "background_fetch/background_fetch_data_manager.h", 332 "background_fetch/background_fetch_data_manager.h",
333 "background_fetch/background_fetch_event_dispatcher.cc",
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_data.cc", 337 "background_fetch/background_fetch_job_data.cc",
336 "background_fetch/background_fetch_job_data.h", 338 "background_fetch/background_fetch_job_data.h",
337 "background_fetch/background_fetch_job_info.cc", 339 "background_fetch/background_fetch_job_info.cc",
338 "background_fetch/background_fetch_job_info.h", 340 "background_fetch/background_fetch_job_info.h",
339 "background_fetch/background_fetch_request_info.cc", 341 "background_fetch/background_fetch_request_info.cc",
340 "background_fetch/background_fetch_request_info.h", 342 "background_fetch/background_fetch_request_info.h",
341 "background_fetch/background_fetch_service_impl.cc", 343 "background_fetch/background_fetch_service_impl.cc",
342 "background_fetch/background_fetch_service_impl.h", 344 "background_fetch/background_fetch_service_impl.h",
(...skipping 1709 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 if (!is_component_build) { 2054 if (!is_component_build) {
2053 public_deps = [ 2055 public_deps = [
2054 ":browser", 2056 ":browser",
2055 ] 2057 ]
2056 } else { 2058 } else {
2057 public_deps = [ 2059 public_deps = [
2058 "//third_party/leveldatabase", 2060 "//third_party/leveldatabase",
2059 ] 2061 ]
2060 } 2062 }
2061 } 2063 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698