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 "ForeignFetchEvent.cpp", | 15 "ForeignFetchEvent.cpp", |
16 "ForeignFetchEvent.h", | 16 "ForeignFetchEvent.h", |
17 "ForeignFetchRespondWithObserver.cpp", | 17 "ForeignFetchRespondWithObserver.cpp", |
18 "ForeignFetchRespondWithObserver.h", | 18 "ForeignFetchRespondWithObserver.h", |
19 "InstallEvent.cpp", | 19 "InstallEvent.cpp", |
20 "InstallEvent.h", | 20 "InstallEvent.h", |
| 21 "NavigationPreloadManager.cpp", |
| 22 "NavigationPreloadManager.h", |
21 "NavigatorServiceWorker.cpp", | 23 "NavigatorServiceWorker.cpp", |
22 "NavigatorServiceWorker.h", | 24 "NavigatorServiceWorker.h", |
23 "RespondWithObserver.cpp", | 25 "RespondWithObserver.cpp", |
24 "RespondWithObserver.h", | 26 "RespondWithObserver.h", |
25 "ServiceWorker.cpp", | 27 "ServiceWorker.cpp", |
26 "ServiceWorker.h", | 28 "ServiceWorker.h", |
27 "ServiceWorkerClient.cpp", | 29 "ServiceWorkerClient.cpp", |
28 "ServiceWorkerClient.h", | 30 "ServiceWorkerClient.h", |
29 "ServiceWorkerClients.cpp", | 31 "ServiceWorkerClients.cpp", |
30 "ServiceWorkerClients.h", | 32 "ServiceWorkerClients.h", |
(...skipping 17 matching lines...) Expand all Loading... |
48 "ServiceWorkerScriptCachedMetadataHandler.h", | 50 "ServiceWorkerScriptCachedMetadataHandler.h", |
49 "ServiceWorkerThread.cpp", | 51 "ServiceWorkerThread.cpp", |
50 "ServiceWorkerThread.h", | 52 "ServiceWorkerThread.h", |
51 "ServiceWorkerWindowClient.cpp", | 53 "ServiceWorkerWindowClient.cpp", |
52 "ServiceWorkerWindowClient.h", | 54 "ServiceWorkerWindowClient.h", |
53 "ServiceWorkerWindowClientCallback.cpp", | 55 "ServiceWorkerWindowClientCallback.cpp", |
54 "ServiceWorkerWindowClientCallback.h", | 56 "ServiceWorkerWindowClientCallback.h", |
55 "WaitUntilObserver.cpp", | 57 "WaitUntilObserver.cpp", |
56 ] | 58 ] |
57 } | 59 } |
OLD | NEW |