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

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

Issue 2786783002: Dispatch a bare Service Worker event for a finished Background Fetch (Closed)
Patch Set: 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 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_context.cc", 327 "background_fetch/background_fetch_context.cc",
328 "background_fetch/background_fetch_context.h", 328 "background_fetch/background_fetch_context.h",
329 "background_fetch/background_fetch_data_manager.cc", 329 "background_fetch/background_fetch_data_manager.cc",
330 "background_fetch/background_fetch_data_manager.h", 330 "background_fetch/background_fetch_data_manager.h",
331 "background_fetch/background_fetch_event_dispatcher.cc", 331 "background_fetch/background_fetch_event_dispatcher.cc",
332 "background_fetch/background_fetch_event_dispatcher.h", 332 "background_fetch/background_fetch_event_dispatcher.h",
333 "background_fetch/background_fetch_job_controller.cc", 333 "background_fetch/background_fetch_job_controller.cc",
334 "background_fetch/background_fetch_job_controller.h", 334 "background_fetch/background_fetch_job_controller.h",
335 "background_fetch/background_fetch_job_info.cc",
336 "background_fetch/background_fetch_job_info.h",
337 "background_fetch/background_fetch_job_response_data.cc",
338 "background_fetch/background_fetch_job_response_data.h",
339 "background_fetch/background_fetch_registration_id.cc", 335 "background_fetch/background_fetch_registration_id.cc",
340 "background_fetch/background_fetch_registration_id.h", 336 "background_fetch/background_fetch_registration_id.h",
341 "background_fetch/background_fetch_request_info.cc", 337 "background_fetch/background_fetch_request_info.cc",
342 "background_fetch/background_fetch_request_info.h", 338 "background_fetch/background_fetch_request_info.h",
343 "background_fetch/background_fetch_service_impl.cc", 339 "background_fetch/background_fetch_service_impl.cc",
344 "background_fetch/background_fetch_service_impl.h", 340 "background_fetch/background_fetch_service_impl.h",
345 "background_sync/background_sync_context.cc", 341 "background_sync/background_sync_context.cc",
346 "background_sync/background_sync_context.h", 342 "background_sync/background_sync_context.h",
347 "background_sync/background_sync_manager.cc", 343 "background_sync/background_sync_manager.cc",
348 "background_sync/background_sync_manager.h", 344 "background_sync/background_sync_manager.h",
(...skipping 1705 matching lines...) Expand 10 before | Expand all | Expand 10 after
2054 if (!is_component_build) { 2050 if (!is_component_build) {
2055 public_deps = [ 2051 public_deps = [
2056 ":browser", 2052 ":browser",
2057 ] 2053 ]
2058 } else { 2054 } else {
2059 public_deps = [ 2055 public_deps = [
2060 "//third_party/leveldatabase", 2056 "//third_party/leveldatabase",
2061 ] 2057 ]
2062 } 2058 }
2063 } 2059 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698