| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "MutationRecord.h", | 217 "MutationRecord.h", |
| 218 "NameNodeList.cpp", | 218 "NameNodeList.cpp", |
| 219 "NameNodeList.h", | 219 "NameNodeList.h", |
| 220 "NamedNodeMap.cpp", | 220 "NamedNodeMap.cpp", |
| 221 "NamedNodeMap.h", | 221 "NamedNodeMap.h", |
| 222 "Node.cpp", | 222 "Node.cpp", |
| 223 "Node.h", | 223 "Node.h", |
| 224 "NodeChildRemovalTracker.cpp", | 224 "NodeChildRemovalTracker.cpp", |
| 225 "NodeChildRemovalTracker.h", | 225 "NodeChildRemovalTracker.h", |
| 226 "NodeComputedStyle.h", | 226 "NodeComputedStyle.h", |
| 227 "NodeFilter.cpp", | |
| 228 "NodeFilter.h", | 227 "NodeFilter.h", |
| 229 "NodeFilterCondition.h", | 228 "NodeFilterCondition.h", |
| 230 "NodeIterator.cpp", | 229 "NodeIterator.cpp", |
| 231 "NodeIterator.h", | 230 "NodeIterator.h", |
| 232 "NodeIteratorBase.cpp", | 231 "NodeIteratorBase.cpp", |
| 233 "NodeIteratorBase.h", | 232 "NodeIteratorBase.h", |
| 234 "NodeList.h", | 233 "NodeList.h", |
| 235 "NodeListsNodeData.cpp", | 234 "NodeListsNodeData.cpp", |
| 236 "NodeListsNodeData.h", | 235 "NodeListsNodeData.h", |
| 237 "NodeRareData.cpp", | 236 "NodeRareData.cpp", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 "shadow/SlotAssignment.h", | 447 "shadow/SlotAssignment.h", |
| 449 "shadow/SlotScopedTraversal.cpp", | 448 "shadow/SlotScopedTraversal.cpp", |
| 450 "shadow/SlotScopedTraversal.h", | 449 "shadow/SlotScopedTraversal.h", |
| 451 ] | 450 ] |
| 452 | 451 |
| 453 configs += [ | 452 configs += [ |
| 454 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 453 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 455 "//build/config/compiler:no_size_t_to_int_warning", | 454 "//build/config/compiler:no_size_t_to_int_warning", |
| 456 ] | 455 ] |
| 457 } | 456 } |
| OLD | NEW |