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 = [ |
11 "AXObjectCache.cpp", | 11 "AXObjectCache.cpp", |
12 "AXObjectCache.h", | 12 "AXObjectCache.h", |
13 "AccessibleNode.cpp", | 13 "AccessibleNode.cpp", |
14 "AccessibleNode.h", | 14 "AccessibleNode.h", |
| 15 "AncestorList.h", |
15 "AnimationWorkletProxyClient.h", | 16 "AnimationWorkletProxyClient.h", |
16 "Attr.cpp", | 17 "Attr.cpp", |
17 "Attr.h", | 18 "Attr.h", |
18 "Attribute.h", | 19 "Attribute.h", |
19 "AttributeCollection.h", | 20 "AttributeCollection.h", |
20 "CDATASection.cpp", | 21 "CDATASection.cpp", |
21 "CDATASection.h", | 22 "CDATASection.h", |
22 "CSSSelectorWatch.cpp", | 23 "CSSSelectorWatch.cpp", |
23 "CSSSelectorWatch.h", | 24 "CSSSelectorWatch.h", |
24 "CharacterData.cpp", | 25 "CharacterData.cpp", |
25 "CharacterData.h", | 26 "CharacterData.h", |
26 "ChildFrameDisconnector.cpp", | 27 "ChildFrameDisconnector.cpp", |
27 "ChildFrameDisconnector.h", | 28 "ChildFrameDisconnector.h", |
28 "ChildListMutationScope.cpp", | 29 "ChildListMutationScope.cpp", |
29 "ChildListMutationScope.h", | 30 "ChildListMutationScope.h", |
30 "ChildNode.h", | 31 "ChildNode.h", |
31 "ChildNodeList.cpp", | 32 "ChildNodeList.cpp", |
32 "ChildNodeList.h", | 33 "ChildNodeList.h", |
33 "ClassCollection.cpp", | 34 "ClassCollection.cpp", |
34 "ClassCollection.h", | 35 "ClassCollection.h", |
| 36 "ClassicPendingScript.cpp", |
| 37 "ClassicPendingScript.h", |
35 "ClassicScript.cpp", | 38 "ClassicScript.cpp", |
36 "ClassicScript.h", | 39 "ClassicScript.h", |
37 "ClientRect.cpp", | 40 "ClientRect.cpp", |
38 "ClientRect.h", | 41 "ClientRect.h", |
39 "ClientRectList.cpp", | 42 "ClientRectList.cpp", |
40 "ClientRectList.h", | 43 "ClientRectList.h", |
41 "CollectionIndexCache.h", | 44 "CollectionIndexCache.h", |
42 "Comment.cpp", | 45 "Comment.cpp", |
43 "Comment.h", | 46 "Comment.h", |
44 "CompositorProxiedPropertySet.cpp", | 47 "CompositorProxiedPropertySet.cpp", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 "LiveNodeList.cpp", | 189 "LiveNodeList.cpp", |
187 "LiveNodeList.h", | 190 "LiveNodeList.h", |
188 "LiveNodeListBase.cpp", | 191 "LiveNodeListBase.cpp", |
189 "LiveNodeListBase.h", | 192 "LiveNodeListBase.h", |
190 "MessageChannel.cpp", | 193 "MessageChannel.cpp", |
191 "MessageChannel.h", | 194 "MessageChannel.h", |
192 "MessagePort.cpp", | 195 "MessagePort.cpp", |
193 "MessagePort.h", | 196 "MessagePort.h", |
194 "Modulator.cpp", | 197 "Modulator.cpp", |
195 "Modulator.h", | 198 "Modulator.h", |
| 199 "ModulatorImpl.cpp", |
| 200 "ModulatorImpl.h", |
196 "ModuleMap.cpp", | 201 "ModuleMap.cpp", |
197 "ModuleMap.h", | 202 "ModuleMap.h", |
| 203 "ModulePendingScript.cpp", |
| 204 "ModulePendingScript.h", |
198 "ModuleScript.cpp", | 205 "ModuleScript.cpp", |
199 "ModuleScript.h", | 206 "ModuleScript.h", |
200 "MutationCallback.h", | 207 "MutationCallback.h", |
201 "MutationObserver.cpp", | 208 "MutationObserver.cpp", |
202 "MutationObserver.h", | 209 "MutationObserver.h", |
203 "MutationObserverInterestGroup.cpp", | 210 "MutationObserverInterestGroup.cpp", |
204 "MutationObserverInterestGroup.h", | 211 "MutationObserverInterestGroup.h", |
205 "MutationObserverRegistration.cpp", | 212 "MutationObserverRegistration.cpp", |
206 "MutationObserverRegistration.h", | 213 "MutationObserverRegistration.h", |
207 "MutationRecord.cpp", | 214 "MutationRecord.cpp", |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 "shadow/SlotAssignment.h", | 446 "shadow/SlotAssignment.h", |
440 "shadow/SlotScopedTraversal.cpp", | 447 "shadow/SlotScopedTraversal.cpp", |
441 "shadow/SlotScopedTraversal.h", | 448 "shadow/SlotScopedTraversal.h", |
442 ] | 449 ] |
443 | 450 |
444 configs += [ | 451 configs += [ |
445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 452 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
446 "//build/config/compiler:no_size_t_to_int_warning", | 453 "//build/config/compiler:no_size_t_to_int_warning", |
447 ] | 454 ] |
448 } | 455 } |
OLD | NEW |