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 "AllDescendantsCollection.h", |
15 "AncestorList.h", | 16 "AncestorList.h", |
16 "AnimationWorkletProxyClient.h", | 17 "AnimationWorkletProxyClient.h", |
17 "Attr.cpp", | 18 "Attr.cpp", |
18 "Attr.h", | 19 "Attr.h", |
19 "Attribute.h", | 20 "Attribute.h", |
20 "AttributeCollection.h", | 21 "AttributeCollection.h", |
21 "CDATASection.cpp", | 22 "CDATASection.cpp", |
22 "CDATASection.h", | 23 "CDATASection.h", |
23 "CSSSelectorWatch.cpp", | 24 "CSSSelectorWatch.cpp", |
24 "CSSSelectorWatch.h", | 25 "CSSSelectorWatch.h", |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 "shadow/SlotAssignment.h", | 448 "shadow/SlotAssignment.h", |
448 "shadow/SlotScopedTraversal.cpp", | 449 "shadow/SlotScopedTraversal.cpp", |
449 "shadow/SlotScopedTraversal.h", | 450 "shadow/SlotScopedTraversal.h", |
450 ] | 451 ] |
451 | 452 |
452 configs += [ | 453 configs += [ |
453 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 454 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
454 "//build/config/compiler:no_size_t_to_int_warning", | 455 "//build/config/compiler:no_size_t_to_int_warning", |
455 ] | 456 ] |
456 } | 457 } |
OLD | NEW |