| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "NodeChildRemovalTracker.cpp", | 201 "NodeChildRemovalTracker.cpp", |
| 202 "NodeChildRemovalTracker.h", | 202 "NodeChildRemovalTracker.h", |
| 203 "NodeComputedStyle.h", | 203 "NodeComputedStyle.h", |
| 204 "NodeFilter.cpp", | 204 "NodeFilter.cpp", |
| 205 "NodeFilter.h", | 205 "NodeFilter.h", |
| 206 "NodeFilterCondition.h", | 206 "NodeFilterCondition.h", |
| 207 "NodeIterator.cpp", | 207 "NodeIterator.cpp", |
| 208 "NodeIterator.h", | 208 "NodeIterator.h", |
| 209 "NodeIteratorBase.cpp", | 209 "NodeIteratorBase.cpp", |
| 210 "NodeIteratorBase.h", | 210 "NodeIteratorBase.h", |
| 211 "NodeList.cpp", | |
| 212 "NodeListsNodeData.cpp", | 211 "NodeListsNodeData.cpp", |
| 213 "NodeListsNodeData.h", | 212 "NodeListsNodeData.h", |
| 214 "NodeRareData.cpp", | 213 "NodeRareData.cpp", |
| 215 "NodeRareData.h", | 214 "NodeRareData.h", |
| 216 "NodeTraversal.cpp", | 215 "NodeTraversal.cpp", |
| 217 "NodeTraversal.h", | 216 "NodeTraversal.h", |
| 218 "NodeWithIndex.h", | 217 "NodeWithIndex.h", |
| 219 "NonDocumentTypeChildNode.h", | 218 "NonDocumentTypeChildNode.h", |
| 220 "NonElementParentNode.h", | 219 "NonElementParentNode.h", |
| 221 "NthIndexCache.cpp", | 220 "NthIndexCache.cpp", |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 "shadow/SlotAssignment.h", | 406 "shadow/SlotAssignment.h", |
| 408 "shadow/SlotScopedTraversal.cpp", | 407 "shadow/SlotScopedTraversal.cpp", |
| 409 "shadow/SlotScopedTraversal.h", | 408 "shadow/SlotScopedTraversal.h", |
| 410 ] | 409 ] |
| 411 | 410 |
| 412 configs += [ | 411 configs += [ |
| 413 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 412 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 414 "//build/config/compiler:no_size_t_to_int_warning", | 413 "//build/config/compiler:no_size_t_to_int_warning", |
| 415 ] | 414 ] |
| 416 } | 415 } |
| OLD | NEW |