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 15 matching lines...) Expand all Loading... |
26 "MainThreadWorkletGlobalScope.h", | 26 "MainThreadWorkletGlobalScope.h", |
27 "ParentFrameTaskRunners.cpp", | 27 "ParentFrameTaskRunners.cpp", |
28 "ParentFrameTaskRunners.h", | 28 "ParentFrameTaskRunners.h", |
29 "SharedWorker.cpp", | 29 "SharedWorker.cpp", |
30 "SharedWorker.h", | 30 "SharedWorker.h", |
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", |
| 37 "ThreadedMessagingProxyBase.h", |
36 "ThreadedWorkletGlobalScope.cpp", | 38 "ThreadedWorkletGlobalScope.cpp", |
37 "ThreadedWorkletGlobalScope.h", | 39 "ThreadedWorkletGlobalScope.h", |
38 "ThreadedWorkletGlobalScopeProxy.h", | 40 "ThreadedWorkletGlobalScopeProxy.h", |
39 "Worker.cpp", | 41 "Worker.cpp", |
40 "Worker.h", | 42 "Worker.h", |
41 "WorkerBackingThread.cpp", | 43 "WorkerBackingThread.cpp", |
42 "WorkerBackingThread.h", | 44 "WorkerBackingThread.h", |
43 "WorkerClients.cpp", | 45 "WorkerClients.cpp", |
44 "WorkerClients.h", | 46 "WorkerClients.h", |
45 "WorkerEventQueue.cpp", | 47 "WorkerEventQueue.cpp", |
(...skipping 25 matching lines...) Expand all Loading... |
71 "WorkletGlobalScope.h", | 73 "WorkletGlobalScope.h", |
72 "WorkletScriptLoader.cpp", | 74 "WorkletScriptLoader.cpp", |
73 "WorkletScriptLoader.h", | 75 "WorkletScriptLoader.h", |
74 ] | 76 ] |
75 | 77 |
76 configs += [ | 78 configs += [ |
77 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 79 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
78 "//build/config/compiler:no_size_t_to_int_warning", | 80 "//build/config/compiler:no_size_t_to_int_warning", |
79 ] | 81 ] |
80 } | 82 } |
OLD | NEW |