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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "WorkerThread.cpp", | 70 "WorkerThread.cpp", |
71 "WorkerThread.h", | 71 "WorkerThread.h", |
72 "WorkerThreadLifecycleObserver.cpp", | 72 "WorkerThreadLifecycleObserver.cpp", |
73 "WorkerThreadLifecycleObserver.h", | 73 "WorkerThreadLifecycleObserver.h", |
74 "WorkerThreadStartupData.cpp", | 74 "WorkerThreadStartupData.cpp", |
75 "WorkerThreadStartupData.h", | 75 "WorkerThreadStartupData.h", |
76 "Worklet.cpp", | 76 "Worklet.cpp", |
77 "Worklet.h", | 77 "Worklet.h", |
78 "WorkletGlobalScope.cpp", | 78 "WorkletGlobalScope.cpp", |
79 "WorkletGlobalScope.h", | 79 "WorkletGlobalScope.h", |
| 80 "WorkletGlobalScopeProxy.h", |
80 "WorkletThreadHolder.h", | 81 "WorkletThreadHolder.h", |
81 ] | 82 ] |
82 | 83 |
83 configs += [ | 84 configs += [ |
84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 85 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
85 "//build/config/compiler:no_size_t_to_int_warning", | 86 "//build/config/compiler:no_size_t_to_int_warning", |
86 ] | 87 ] |
87 } | 88 } |
OLD | NEW |