| 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 "AncestorList.h", |
| 15 "AnimationWorkletProxyClient.h", | 16 "AnimationWorkletProxyClient.h", |
| 16 "Attr.cpp", | 17 "Attr.cpp", |
| 17 "Attr.h", | 18 "Attr.h", |
| 18 "Attribute.h", | 19 "Attribute.h", |
| 19 "AttributeCollection.h", | 20 "AttributeCollection.h", |
| 20 "CDATASection.cpp", | 21 "CDATASection.cpp", |
| 21 "CDATASection.h", | 22 "CDATASection.h", |
| 22 "CSSSelectorWatch.cpp", | 23 "CSSSelectorWatch.cpp", |
| 23 "CSSSelectorWatch.h", | 24 "CSSSelectorWatch.h", |
| 24 "CharacterData.cpp", | 25 "CharacterData.cpp", |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 "shadow/SlotAssignment.h", | 440 "shadow/SlotAssignment.h", |
| 440 "shadow/SlotScopedTraversal.cpp", | 441 "shadow/SlotScopedTraversal.cpp", |
| 441 "shadow/SlotScopedTraversal.h", | 442 "shadow/SlotScopedTraversal.h", |
| 442 ] | 443 ] |
| 443 | 444 |
| 444 configs += [ | 445 configs += [ |
| 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 446 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 446 "//build/config/compiler:no_size_t_to_int_warning", | 447 "//build/config/compiler:no_size_t_to_int_warning", |
| 447 ] | 448 ] |
| 448 } | 449 } |
| OLD | NEW |