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