| 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 19 matching lines...) Expand all Loading... |
| 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", | 36 "ThreadedMessagingProxyBase.cpp", |
| 37 "ThreadedMessagingProxyBase.h", | 37 "ThreadedMessagingProxyBase.h", |
| 38 "ThreadedWorkletGlobalScope.cpp", | 38 "ThreadedWorkletGlobalScope.cpp", |
| 39 "ThreadedWorkletGlobalScope.h", | 39 "ThreadedWorkletGlobalScope.h", |
| 40 "ThreadedWorkletGlobalScopeProxy.h", | |
| 41 "ThreadedWorkletMessagingProxy.cpp", | 40 "ThreadedWorkletMessagingProxy.cpp", |
| 42 "ThreadedWorkletMessagingProxy.h", | 41 "ThreadedWorkletMessagingProxy.h", |
| 43 "ThreadedWorkletObjectProxy.cpp", | 42 "ThreadedWorkletObjectProxy.cpp", |
| 44 "ThreadedWorkletObjectProxy.h", | 43 "ThreadedWorkletObjectProxy.h", |
| 45 "Worker.cpp", | 44 "Worker.cpp", |
| 46 "Worker.h", | 45 "Worker.h", |
| 47 "WorkerBackingThread.cpp", | 46 "WorkerBackingThread.cpp", |
| 48 "WorkerBackingThread.h", | 47 "WorkerBackingThread.h", |
| 49 "WorkerClients.cpp", | 48 "WorkerClients.cpp", |
| 50 "WorkerClients.h", | 49 "WorkerClients.h", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 78 "WorkletScriptLoader.cpp", | 77 "WorkletScriptLoader.cpp", |
| 79 "WorkletScriptLoader.h", | 78 "WorkletScriptLoader.h", |
| 80 "WorkletThreadHolder.h", | 79 "WorkletThreadHolder.h", |
| 81 ] | 80 ] |
| 82 | 81 |
| 83 configs += [ | 82 configs += [ |
| 84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 85 "//build/config/compiler:no_size_t_to_int_warning", | 84 "//build/config/compiler:no_size_t_to_int_warning", |
| 86 ] | 85 ] |
| 87 } | 86 } |
| OLD | NEW |