| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "WorkerThread.h", | 77 "WorkerThread.h", |
| 78 "WorkerThreadLifecycleObserver.cpp", | 78 "WorkerThreadLifecycleObserver.cpp", |
| 79 "WorkerThreadLifecycleObserver.h", | 79 "WorkerThreadLifecycleObserver.h", |
| 80 "WorkerThreadStartupData.cpp", | 80 "WorkerThreadStartupData.cpp", |
| 81 "WorkerThreadStartupData.h", | 81 "WorkerThreadStartupData.h", |
| 82 "Worklet.cpp", | 82 "Worklet.cpp", |
| 83 "Worklet.h", | 83 "Worklet.h", |
| 84 "WorkletGlobalScope.cpp", | 84 "WorkletGlobalScope.cpp", |
| 85 "WorkletGlobalScope.h", | 85 "WorkletGlobalScope.h", |
| 86 "WorkletGlobalScopeProxy.h", | 86 "WorkletGlobalScopeProxy.h", |
| 87 "WorkletObjectProxy.h", |
| 87 "WorkletThreadHolder.h", | 88 "WorkletThreadHolder.h", |
| 88 ] | 89 ] |
| 89 | 90 |
| 90 configs += [ | 91 configs += [ |
| 91 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 92 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 92 "//build/config/compiler:no_size_t_to_int_warning", | 93 "//build/config/compiler:no_size_t_to_int_warning", |
| 93 ] | 94 ] |
| 94 } | 95 } |
| OLD | NEW |