| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("serviceworkers") { | 7 blink_modules_sources("serviceworkers") { |
| 8 sources = [ | 8 sources = [ |
| 9 "ExtendableEvent.cpp", | 9 "ExtendableEvent.cpp", |
| 10 "ExtendableEvent.h", | 10 "ExtendableEvent.h", |
| 11 "ExtendableMessageEvent.cpp", | 11 "ExtendableMessageEvent.cpp", |
| 12 "ExtendableMessageEvent.h", | 12 "ExtendableMessageEvent.h", |
| 13 "FetchEvent.cpp", | 13 "FetchEvent.cpp", |
| 14 "FetchEvent.h", | 14 "FetchEvent.h", |
| 15 "FetchRespondWithObserver.cpp", |
| 16 "FetchRespondWithObserver.h", |
| 15 "ForeignFetchEvent.cpp", | 17 "ForeignFetchEvent.cpp", |
| 16 "ForeignFetchEvent.h", | 18 "ForeignFetchEvent.h", |
| 17 "ForeignFetchRespondWithObserver.cpp", | 19 "ForeignFetchRespondWithObserver.cpp", |
| 18 "ForeignFetchRespondWithObserver.h", | 20 "ForeignFetchRespondWithObserver.h", |
| 19 "InstallEvent.cpp", | 21 "InstallEvent.cpp", |
| 20 "InstallEvent.h", | 22 "InstallEvent.h", |
| 21 "NavigationPreloadCallbacks.cpp", | 23 "NavigationPreloadCallbacks.cpp", |
| 22 "NavigationPreloadCallbacks.h", | 24 "NavigationPreloadCallbacks.h", |
| 23 "NavigationPreloadManager.cpp", | 25 "NavigationPreloadManager.cpp", |
| 24 "NavigationPreloadManager.h", | 26 "NavigationPreloadManager.h", |
| 25 "NavigatorServiceWorker.cpp", | 27 "NavigatorServiceWorker.cpp", |
| 26 "NavigatorServiceWorker.h", | 28 "NavigatorServiceWorker.h", |
| 29 "PaymentRequestRespondWithObserver.cpp", |
| 30 "PaymentRequestRespondWithObserver.h", |
| 27 "RespondWithObserver.cpp", | 31 "RespondWithObserver.cpp", |
| 28 "RespondWithObserver.h", | 32 "RespondWithObserver.h", |
| 29 "ServiceWorker.cpp", | 33 "ServiceWorker.cpp", |
| 30 "ServiceWorker.h", | 34 "ServiceWorker.h", |
| 31 "ServiceWorkerClient.cpp", | 35 "ServiceWorkerClient.cpp", |
| 32 "ServiceWorkerClient.h", | 36 "ServiceWorkerClient.h", |
| 33 "ServiceWorkerClients.cpp", | 37 "ServiceWorkerClients.cpp", |
| 34 "ServiceWorkerClients.h", | 38 "ServiceWorkerClients.h", |
| 35 "ServiceWorkerContainer.cpp", | 39 "ServiceWorkerContainer.cpp", |
| 36 "ServiceWorkerContainer.h", | 40 "ServiceWorkerContainer.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 50 "ServiceWorkerScriptCachedMetadataHandler.h", | 54 "ServiceWorkerScriptCachedMetadataHandler.h", |
| 51 "ServiceWorkerThread.cpp", | 55 "ServiceWorkerThread.cpp", |
| 52 "ServiceWorkerThread.h", | 56 "ServiceWorkerThread.h", |
| 53 "ServiceWorkerWindowClient.cpp", | 57 "ServiceWorkerWindowClient.cpp", |
| 54 "ServiceWorkerWindowClient.h", | 58 "ServiceWorkerWindowClient.h", |
| 55 "ServiceWorkerWindowClientCallback.cpp", | 59 "ServiceWorkerWindowClientCallback.cpp", |
| 56 "ServiceWorkerWindowClientCallback.h", | 60 "ServiceWorkerWindowClientCallback.h", |
| 57 "WaitUntilObserver.cpp", | 61 "WaitUntilObserver.cpp", |
| 58 ] | 62 ] |
| 59 } | 63 } |
| OLD | NEW |