summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/workers/BUILD.gn
blob: 28acb5029e51708ab535a0be763bb0626d5c2e2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//third_party/blink/renderer/core/core.gni")

blink_core_sources("workers") {
  sources = [
    "abstract_worker.cc",
    "abstract_worker.h",
    "dedicated_worker.cc",
    "dedicated_worker.h",
    "dedicated_worker_global_scope.cc",
    "dedicated_worker_global_scope.h",
    "dedicated_worker_messaging_proxy.cc",
    "dedicated_worker_messaging_proxy.h",
    "dedicated_worker_object_proxy.cc",
    "dedicated_worker_object_proxy.h",
    "dedicated_worker_thread.cc",
    "dedicated_worker_thread.h",
    "experimental/task.cc",
    "experimental/task.h",
    "experimental/task_worklet.cc",
    "experimental/task_worklet.h",
    "experimental/task_worklet_global_scope.cc",
    "experimental/task_worklet_global_scope.h",
    "experimental/thread_pool.cc",
    "experimental/thread_pool.h",
    "experimental/thread_pool_thread.cc",
    "experimental/thread_pool_thread.h",
    "experimental/window_task_worklet.h",
    "experimental/worker_task_queue.cc",
    "experimental/worker_task_queue.h",
    "global_scope_creation_params.cc",
    "global_scope_creation_params.h",
    "installed_scripts_manager.cc",
    "installed_scripts_manager.h",
    "main_thread_worklet_reporting_proxy.cc",
    "main_thread_worklet_reporting_proxy.h",
    "parent_execution_context_task_runners.cc",
    "parent_execution_context_task_runners.h",
    "shared_worker.cc",
    "shared_worker.h",
    "shared_worker_client.cc",
    "shared_worker_client.h",
    "shared_worker_client_holder.cc",
    "shared_worker_client_holder.h",
    "shared_worker_content_settings_proxy.cc",
    "shared_worker_content_settings_proxy.h",
    "shared_worker_global_scope.cc",
    "shared_worker_global_scope.h",
    "shared_worker_reporting_proxy.cc",
    "shared_worker_reporting_proxy.h",
    "shared_worker_thread.cc",
    "shared_worker_thread.h",
    "threaded_messaging_proxy_base.cc",
    "threaded_messaging_proxy_base.h",
    "threaded_object_proxy_base.cc",
    "threaded_object_proxy_base.h",
    "threaded_worklet_messaging_proxy.cc",
    "threaded_worklet_messaging_proxy.h",
    "threaded_worklet_object_proxy.cc",
    "threaded_worklet_object_proxy.h",
    "worker_animation_frame_provider.cc",
    "worker_animation_frame_provider.h",
    "worker_backing_thread.cc",
    "worker_backing_thread.h",
    "worker_backing_thread_startup_data.h",
    "worker_classic_script_loader.cc",
    "worker_classic_script_loader.h",
    "worker_clients.cc",
    "worker_clients.h",
    "worker_content_settings_client.cc",
    "worker_content_settings_client.h",
    "worker_global_scope.cc",
    "worker_global_scope.h",
    "worker_location.h",
    "worker_module_tree_client.cc",
    "worker_module_tree_client.h",
    "worker_navigator.cc",
    "worker_navigator.h",
    "worker_or_worklet_global_scope.cc",
    "worker_or_worklet_global_scope.h",
    "worker_reporting_proxy.h",
    "worker_settings.cc",
    "worker_settings.h",
    "worker_thread.cc",
    "worker_thread.h",
    "worklet.cc",
    "worklet.h",
    "worklet_global_scope.cc",
    "worklet_global_scope.h",
    "worklet_global_scope_proxy.h",
    "worklet_module_responses_map.cc",
    "worklet_module_responses_map.h",
    "worklet_module_tree_client.cc",
    "worklet_module_tree_client.h",
    "worklet_pending_tasks.cc",
    "worklet_pending_tasks.h",
    "worklet_thread_holder.h",
  ]
}