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("dom") { | 7 blink_core_sources("dom") { |
8 split_count = 5 | 8 split_count = 5 |
9 | 9 |
10 sources = [ | 10 sources = [ |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 "LayoutTreeBuilderTraversal.h", | 173 "LayoutTreeBuilderTraversal.h", |
174 "LiveNodeList.cpp", | 174 "LiveNodeList.cpp", |
175 "LiveNodeList.h", | 175 "LiveNodeList.h", |
176 "LiveNodeListBase.cpp", | 176 "LiveNodeListBase.cpp", |
177 "LiveNodeListBase.h", | 177 "LiveNodeListBase.h", |
178 "MessageChannel.cpp", | 178 "MessageChannel.cpp", |
179 "MessageChannel.h", | 179 "MessageChannel.h", |
180 "MessagePort.cpp", | 180 "MessagePort.cpp", |
181 "Modulator.cpp", | 181 "Modulator.cpp", |
182 "Modulator.h", | 182 "Modulator.h", |
| 183 "ModulatorImpl.cpp", |
| 184 "ModulatorImpl.h", |
183 "ModuleMap.cpp", | 185 "ModuleMap.cpp", |
184 "ModuleMap.h", | 186 "ModuleMap.h", |
185 "ModuleScript.cpp", | 187 "ModuleScript.cpp", |
186 "ModuleScript.h", | 188 "ModuleScript.h", |
187 "MutationCallback.h", | 189 "MutationCallback.h", |
188 "MutationObserver.cpp", | 190 "MutationObserver.cpp", |
189 "MutationObserver.h", | 191 "MutationObserver.h", |
190 "MutationObserverInterestGroup.cpp", | 192 "MutationObserverInterestGroup.cpp", |
191 "MutationObserverInterestGroup.h", | 193 "MutationObserverInterestGroup.h", |
192 "MutationObserverRegistration.cpp", | 194 "MutationObserverRegistration.cpp", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 "ResizeObserverEntry.cpp", | 248 "ResizeObserverEntry.cpp", |
247 "ResizeObserverEntry.h", | 249 "ResizeObserverEntry.h", |
248 "SandboxFlags.cpp", | 250 "SandboxFlags.cpp", |
249 "SandboxFlags.h", | 251 "SandboxFlags.h", |
250 "ScopedWindowFocusAllowedIndicator.h", | 252 "ScopedWindowFocusAllowedIndicator.h", |
251 "ScriptElementBase.cpp", | 253 "ScriptElementBase.cpp", |
252 "ScriptElementBase.h", | 254 "ScriptElementBase.h", |
253 "ScriptLoader.cpp", | 255 "ScriptLoader.cpp", |
254 "ScriptLoader.h", | 256 "ScriptLoader.h", |
255 "ScriptModuleResolver.h", | 257 "ScriptModuleResolver.h", |
| 258 "ScriptModuleResolverImpl.cpp", |
| 259 "ScriptModuleResolverImpl.h", |
256 "ScriptRunner.cpp", | 260 "ScriptRunner.cpp", |
257 "ScriptRunner.h", | 261 "ScriptRunner.h", |
258 "ScriptableDocumentParser.cpp", | 262 "ScriptableDocumentParser.cpp", |
259 "ScriptableDocumentParser.h", | 263 "ScriptableDocumentParser.h", |
260 "ScriptedAnimationController.cpp", | 264 "ScriptedAnimationController.cpp", |
261 "ScriptedAnimationController.h", | 265 "ScriptedAnimationController.h", |
262 "ScriptedIdleTaskController.cpp", | 266 "ScriptedIdleTaskController.cpp", |
263 "ScriptedIdleTaskController.h", | 267 "ScriptedIdleTaskController.h", |
264 "SecurityContext.cpp", | 268 "SecurityContext.cpp", |
265 "SecurityContext.h", | 269 "SecurityContext.h", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 "shadow/SlotAssignment.h", | 422 "shadow/SlotAssignment.h", |
419 "shadow/SlotScopedTraversal.cpp", | 423 "shadow/SlotScopedTraversal.cpp", |
420 "shadow/SlotScopedTraversal.h", | 424 "shadow/SlotScopedTraversal.h", |
421 ] | 425 ] |
422 | 426 |
423 configs += [ | 427 configs += [ |
424 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 428 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
425 "//build/config/compiler:no_size_t_to_int_warning", | 429 "//build/config/compiler:no_size_t_to_int_warning", |
426 ] | 430 ] |
427 } | 431 } |
OLD | NEW |