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