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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "WorkerClients.cpp", | 54 "WorkerClients.cpp", |
55 "WorkerClients.h", | 55 "WorkerClients.h", |
56 "WorkerContentSettingsClient.cpp", | 56 "WorkerContentSettingsClient.cpp", |
57 "WorkerContentSettingsClient.h", | 57 "WorkerContentSettingsClient.h", |
58 "WorkerEventQueue.cpp", | 58 "WorkerEventQueue.cpp", |
59 "WorkerEventQueue.h", | 59 "WorkerEventQueue.h", |
60 "WorkerGlobalScope.cpp", | 60 "WorkerGlobalScope.cpp", |
61 "WorkerGlobalScope.h", | 61 "WorkerGlobalScope.h", |
62 "WorkerInspectorProxy.cpp", | 62 "WorkerInspectorProxy.cpp", |
63 "WorkerInspectorProxy.h", | 63 "WorkerInspectorProxy.h", |
64 "WorkerLoaderProxy.cpp", | |
65 "WorkerLoaderProxy.h", | |
66 "WorkerLocation.h", | 64 "WorkerLocation.h", |
67 "WorkerNavigator.cpp", | 65 "WorkerNavigator.cpp", |
68 "WorkerNavigator.h", | 66 "WorkerNavigator.h", |
69 "WorkerOrWorkletGlobalScope.cpp", | 67 "WorkerOrWorkletGlobalScope.cpp", |
70 "WorkerOrWorkletGlobalScope.h", | 68 "WorkerOrWorkletGlobalScope.h", |
71 "WorkerReportingProxy.h", | 69 "WorkerReportingProxy.h", |
72 "WorkerScriptLoader.cpp", | 70 "WorkerScriptLoader.cpp", |
73 "WorkerScriptLoader.h", | 71 "WorkerScriptLoader.h", |
74 "WorkerSettings.cpp", | 72 "WorkerSettings.cpp", |
75 "WorkerSettings.h", | 73 "WorkerSettings.h", |
(...skipping 10 matching lines...) Expand all Loading... |
86 "WorkletGlobalScopeProxy.h", | 84 "WorkletGlobalScopeProxy.h", |
87 "WorkletObjectProxy.h", | 85 "WorkletObjectProxy.h", |
88 "WorkletThreadHolder.h", | 86 "WorkletThreadHolder.h", |
89 ] | 87 ] |
90 | 88 |
91 configs += [ | 89 configs += [ |
92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 90 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
93 "//build/config/compiler:no_size_t_to_int_warning", | 91 "//build/config/compiler:no_size_t_to_int_warning", |
94 ] | 92 ] |
95 } | 93 } |
OLD | NEW |