| 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", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 50 "ServiceWorkerScriptCachedMetadataHandler.h", | 52 "ServiceWorkerScriptCachedMetadataHandler.h", |
| 51 "ServiceWorkerThread.cpp", | 53 "ServiceWorkerThread.cpp", |
| 52 "ServiceWorkerThread.h", | 54 "ServiceWorkerThread.h", |
| 53 "ServiceWorkerWindowClient.cpp", | 55 "ServiceWorkerWindowClient.cpp", |
| 54 "ServiceWorkerWindowClient.h", | 56 "ServiceWorkerWindowClient.h", |
| 55 "ServiceWorkerWindowClientCallback.cpp", | 57 "ServiceWorkerWindowClientCallback.cpp", |
| 56 "ServiceWorkerWindowClientCallback.h", | 58 "ServiceWorkerWindowClientCallback.h", |
| 57 "WaitUntilObserver.cpp", | 59 "WaitUntilObserver.cpp", |
| 58 ] | 60 ] |
| 59 } | 61 } |
| OLD | NEW |