| 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", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 "ServiceWorkerContainerClient.cpp", | 37 "ServiceWorkerContainerClient.cpp", |
| 38 "ServiceWorkerContainerClient.h", | 38 "ServiceWorkerContainerClient.h", |
| 39 "ServiceWorkerError.cpp", | 39 "ServiceWorkerError.cpp", |
| 40 "ServiceWorkerError.h", | 40 "ServiceWorkerError.h", |
| 41 "ServiceWorkerGlobalScope.cpp", | 41 "ServiceWorkerGlobalScope.cpp", |
| 42 "ServiceWorkerGlobalScope.h", | 42 "ServiceWorkerGlobalScope.h", |
| 43 "ServiceWorkerGlobalScopeClient.cpp", | 43 "ServiceWorkerGlobalScopeClient.cpp", |
| 44 "ServiceWorkerGlobalScopeClient.h", | 44 "ServiceWorkerGlobalScopeClient.h", |
| 45 "ServiceWorkerLinkResource.cpp", | 45 "ServiceWorkerLinkResource.cpp", |
| 46 "ServiceWorkerLinkResource.h", | 46 "ServiceWorkerLinkResource.h", |
| 47 "ServiceWorkerMessageEvent.cpp", | |
| 48 "ServiceWorkerMessageEvent.h", | |
| 49 "ServiceWorkerRegistration.cpp", | 47 "ServiceWorkerRegistration.cpp", |
| 50 "ServiceWorkerRegistration.h", | 48 "ServiceWorkerRegistration.h", |
| 51 "ServiceWorkerScriptCachedMetadataHandler.cpp", | 49 "ServiceWorkerScriptCachedMetadataHandler.cpp", |
| 52 "ServiceWorkerScriptCachedMetadataHandler.h", | 50 "ServiceWorkerScriptCachedMetadataHandler.h", |
| 53 "ServiceWorkerThread.cpp", | 51 "ServiceWorkerThread.cpp", |
| 54 "ServiceWorkerThread.h", | 52 "ServiceWorkerThread.h", |
| 55 "ServiceWorkerWindowClient.cpp", | 53 "ServiceWorkerWindowClient.cpp", |
| 56 "ServiceWorkerWindowClient.h", | 54 "ServiceWorkerWindowClient.h", |
| 57 "ServiceWorkerWindowClientCallback.cpp", | 55 "ServiceWorkerWindowClientCallback.cpp", |
| 58 "ServiceWorkerWindowClientCallback.h", | 56 "ServiceWorkerWindowClientCallback.h", |
| 59 "WaitUntilObserver.cpp", | 57 "WaitUntilObserver.cpp", |
| 60 ] | 58 ] |
| 61 } | 59 } |
| OLD | NEW |