| 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 "AXObjectCacheBase.cpp", | 13 "AXObjectCacheBase.cpp", |
| 14 "AXObjectCacheBase.h", | 14 "AXObjectCacheBase.h", |
| 15 "AccessibleNode.cpp", | 15 "AccessibleNode.cpp", |
| 16 "AccessibleNode.h", | 16 "AccessibleNode.h", |
| 17 "AccessibleNodeList.cpp", |
| 18 "AccessibleNodeList.h", |
| 17 "AncestorList.h", | 19 "AncestorList.h", |
| 18 "AnimationWorkletProxyClient.cpp", | 20 "AnimationWorkletProxyClient.cpp", |
| 19 "AnimationWorkletProxyClient.h", | 21 "AnimationWorkletProxyClient.h", |
| 20 "Attr.cpp", | 22 "Attr.cpp", |
| 21 "Attr.h", | 23 "Attr.h", |
| 22 "Attribute.h", | 24 "Attribute.h", |
| 23 "AttributeCollection.h", | 25 "AttributeCollection.h", |
| 24 "CDATASection.cpp", | 26 "CDATASection.cpp", |
| 25 "CDATASection.h", | 27 "CDATASection.h", |
| 26 "CSSSelectorWatch.cpp", | 28 "CSSSelectorWatch.cpp", |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 "XMLDocument.h", | 383 "XMLDocument.h", |
| 382 ] | 384 ] |
| 383 | 385 |
| 384 jumbo_excluded_sources = [ "Modulator.cpp" ] # https://crbug.com/716395 | 386 jumbo_excluded_sources = [ "Modulator.cpp" ] # https://crbug.com/716395 |
| 385 | 387 |
| 386 configs += [ | 388 configs += [ |
| 387 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 388 "//build/config/compiler:no_size_t_to_int_warning", | 390 "//build/config/compiler:no_size_t_to_int_warning", |
| 389 ] | 391 ] |
| 390 } | 392 } |
| OLD | NEW |