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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "DocumentTiming.h", | 117 "DocumentTiming.h", |
118 "DocumentType.cpp", | 118 "DocumentType.cpp", |
119 "Element.cpp", | 119 "Element.cpp", |
120 "Element.h", | 120 "Element.h", |
121 "ElementData.cpp", | 121 "ElementData.cpp", |
122 "ElementData.h", | 122 "ElementData.h", |
123 "ElementDataCache.cpp", | 123 "ElementDataCache.cpp", |
124 "ElementDataCache.h", | 124 "ElementDataCache.h", |
125 "ElementFullscreen.cpp", | 125 "ElementFullscreen.cpp", |
126 "ElementFullscreen.h", | 126 "ElementFullscreen.h", |
| 127 "ElementIntersectionObserverData.cpp", |
| 128 "ElementIntersectionObserverData.h", |
127 "ElementRareData.cpp", | 129 "ElementRareData.cpp", |
128 "ElementRareData.h", | 130 "ElementRareData.h", |
129 "ElementTraversal.h", | 131 "ElementTraversal.h", |
130 "ElementVisibilityObserver.cpp", | 132 "ElementVisibilityObserver.cpp", |
131 "ElementVisibilityObserver.h", | 133 "ElementVisibilityObserver.h", |
132 "EmptyNodeList.cpp", | 134 "EmptyNodeList.cpp", |
133 "EmptyNodeList.h", | 135 "EmptyNodeList.h", |
134 "ExecutionContext.cpp", | 136 "ExecutionContext.cpp", |
135 "ExecutionContext.h", | 137 "ExecutionContext.h", |
136 "ExecutionContextTask.h", | 138 "ExecutionContextTask.h", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 "NameNodeList.cpp", | 189 "NameNodeList.cpp", |
188 "NameNodeList.h", | 190 "NameNodeList.h", |
189 "NamedNodeMap.cpp", | 191 "NamedNodeMap.cpp", |
190 "Node.cpp", | 192 "Node.cpp", |
191 "NodeChildRemovalTracker.cpp", | 193 "NodeChildRemovalTracker.cpp", |
192 "NodeChildRemovalTracker.h", | 194 "NodeChildRemovalTracker.h", |
193 "NodeComputedStyle.h", | 195 "NodeComputedStyle.h", |
194 "NodeFilter.cpp", | 196 "NodeFilter.cpp", |
195 "NodeFilter.h", | 197 "NodeFilter.h", |
196 "NodeFilterCondition.h", | 198 "NodeFilterCondition.h", |
197 "NodeIntersectionObserverData.cpp", | |
198 "NodeIntersectionObserverData.h", | |
199 "NodeIterator.cpp", | 199 "NodeIterator.cpp", |
200 "NodeIterator.h", | 200 "NodeIterator.h", |
201 "NodeIteratorBase.cpp", | 201 "NodeIteratorBase.cpp", |
202 "NodeIteratorBase.h", | 202 "NodeIteratorBase.h", |
203 "NodeList.cpp", | 203 "NodeList.cpp", |
204 "NodeListsNodeData.cpp", | 204 "NodeListsNodeData.cpp", |
205 "NodeListsNodeData.h", | 205 "NodeListsNodeData.h", |
206 "NodeRareData.cpp", | 206 "NodeRareData.cpp", |
207 "NodeRareData.h", | 207 "NodeRareData.h", |
208 "NodeTraversal.cpp", | 208 "NodeTraversal.cpp", |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 "shadow/SlotAssignment.h", | 391 "shadow/SlotAssignment.h", |
392 "shadow/SlotScopedTraversal.cpp", | 392 "shadow/SlotScopedTraversal.cpp", |
393 "shadow/SlotScopedTraversal.h", | 393 "shadow/SlotScopedTraversal.h", |
394 ] | 394 ] |
395 | 395 |
396 configs += [ | 396 configs += [ |
397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
398 "//build/config/compiler:no_size_t_to_int_warning", | 398 "//build/config/compiler:no_size_t_to_int_warning", |
399 ] | 399 ] |
400 } | 400 } |
OLD | NEW |