Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: third_party/WebKit/Source/core/workers/BUILD.gn

Issue 2939623002: [DONT COMMIT] WIP: WorkerClientsInitializer (Closed)
Patch Set: finalize2 Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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",
11 "DedicatedWorkerGlobalScope.cpp", 11 "DedicatedWorkerGlobalScope.cpp",
12 "DedicatedWorkerGlobalScope.h", 12 "DedicatedWorkerGlobalScope.h",
13 "DedicatedWorkerMessagingProxy.cpp", 13 "DedicatedWorkerMessagingProxy.cpp",
14 "DedicatedWorkerMessagingProxy.h", 14 "DedicatedWorkerMessagingProxy.h",
15 "DedicatedWorkerMessagingProxyProvider.cpp",
16 "DedicatedWorkerMessagingProxyProvider.h",
17 "DedicatedWorkerThread.cpp", 15 "DedicatedWorkerThread.cpp",
18 "DedicatedWorkerThread.h", 16 "DedicatedWorkerThread.h",
19 "InProcessWorkerBase.cpp", 17 "InProcessWorkerBase.cpp",
20 "InProcessWorkerBase.h", 18 "InProcessWorkerBase.h",
21 "InProcessWorkerMessagingProxy.cpp", 19 "InProcessWorkerMessagingProxy.cpp",
22 "InProcessWorkerMessagingProxy.h", 20 "InProcessWorkerMessagingProxy.h",
23 "InProcessWorkerObjectProxy.cpp", 21 "InProcessWorkerObjectProxy.cpp",
24 "InProcessWorkerObjectProxy.h", 22 "InProcessWorkerObjectProxy.h",
25 "MainThreadWorkletGlobalScope.cpp", 23 "MainThreadWorkletGlobalScope.cpp",
26 "MainThreadWorkletGlobalScope.h", 24 "MainThreadWorkletGlobalScope.h",
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "WorkletPendingTasks.cpp", 85 "WorkletPendingTasks.cpp",
88 "WorkletPendingTasks.h", 86 "WorkletPendingTasks.h",
89 "WorkletThreadHolder.h", 87 "WorkletThreadHolder.h",
90 ] 88 ]
91 89
92 configs += [ 90 configs += [
93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
94 "//build/config/compiler:no_size_t_to_int_warning", 92 "//build/config/compiler:no_size_t_to_int_warning",
95 ] 93 ]
96 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698