| 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/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("workers") { | 7 blink_core_sources("workers") { |
| 8 sources = [ | 8 sources = [ |
| 9 "AbstractWorker.cpp", | 9 "AbstractWorker.cpp", |
| 10 "AbstractWorker.h", | 10 "AbstractWorker.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "SharedWorkerGlobalScope.cpp", | 31 "SharedWorkerGlobalScope.cpp", |
| 32 "SharedWorkerGlobalScope.h", | 32 "SharedWorkerGlobalScope.h", |
| 33 "SharedWorkerRepositoryClient.h", | 33 "SharedWorkerRepositoryClient.h", |
| 34 "SharedWorkerThread.cpp", | 34 "SharedWorkerThread.cpp", |
| 35 "SharedWorkerThread.h", | 35 "SharedWorkerThread.h", |
| 36 "ThreadedMessagingProxyBase.cpp", | 36 "ThreadedMessagingProxyBase.cpp", |
| 37 "ThreadedMessagingProxyBase.h", | 37 "ThreadedMessagingProxyBase.h", |
| 38 "ThreadedWorkletGlobalScope.cpp", | 38 "ThreadedWorkletGlobalScope.cpp", |
| 39 "ThreadedWorkletGlobalScope.h", | 39 "ThreadedWorkletGlobalScope.h", |
| 40 "ThreadedWorkletGlobalScopeProxy.h", | 40 "ThreadedWorkletGlobalScopeProxy.h", |
| 41 "ThreadedWorkletMessagingProxy.cpp", | |
| 42 "ThreadedWorkletMessagingProxy.h", | |
| 43 "ThreadedWorkletObjectProxy.cpp", | |
| 44 "ThreadedWorkletObjectProxy.h", | |
| 45 "Worker.cpp", | 41 "Worker.cpp", |
| 46 "Worker.h", | 42 "Worker.h", |
| 47 "WorkerBackingThread.cpp", | 43 "WorkerBackingThread.cpp", |
| 48 "WorkerBackingThread.h", | 44 "WorkerBackingThread.h", |
| 49 "WorkerClients.cpp", | 45 "WorkerClients.cpp", |
| 50 "WorkerClients.h", | 46 "WorkerClients.h", |
| 51 "WorkerEventQueue.cpp", | 47 "WorkerEventQueue.cpp", |
| 52 "WorkerEventQueue.h", | 48 "WorkerEventQueue.h", |
| 53 "WorkerGlobalScope.cpp", | 49 "WorkerGlobalScope.cpp", |
| 54 "WorkerGlobalScope.h", | 50 "WorkerGlobalScope.h", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 77 "WorkletGlobalScope.h", | 73 "WorkletGlobalScope.h", |
| 78 "WorkletScriptLoader.cpp", | 74 "WorkletScriptLoader.cpp", |
| 79 "WorkletScriptLoader.h", | 75 "WorkletScriptLoader.h", |
| 80 ] | 76 ] |
| 81 | 77 |
| 82 configs += [ | 78 configs += [ |
| 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 84 "//build/config/compiler:no_size_t_to_int_warning", | 80 "//build/config/compiler:no_size_t_to_int_warning", |
| 85 ] | 81 ] |
| 86 } | 82 } |
| OLD | NEW |