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 11 matching lines...) Expand all Loading... |
22 "ChildListMutationScope.cpp", | 22 "ChildListMutationScope.cpp", |
23 "ChildListMutationScope.h", | 23 "ChildListMutationScope.h", |
24 "ChildNodeList.cpp", | 24 "ChildNodeList.cpp", |
25 "ChildNodeList.h", | 25 "ChildNodeList.h", |
26 "ClassCollection.cpp", | 26 "ClassCollection.cpp", |
27 "ClassCollection.h", | 27 "ClassCollection.h", |
28 "ClientRect.cpp", | 28 "ClientRect.cpp", |
29 "ClientRect.h", | 29 "ClientRect.h", |
30 "ClientRectList.cpp", | 30 "ClientRectList.cpp", |
31 "ClientRectList.h", | 31 "ClientRectList.h", |
| 32 "CollectionIndexCache.h", |
32 "Comment.cpp", | 33 "Comment.cpp", |
33 "Comment.h", | 34 "Comment.h", |
34 "CompositorProxiedPropertySet.cpp", | 35 "CompositorProxiedPropertySet.cpp", |
35 "CompositorProxiedPropertySet.h", | 36 "CompositorProxiedPropertySet.h", |
36 "CompositorProxy.cpp", | 37 "CompositorProxy.cpp", |
37 "CompositorProxy.h", | 38 "CompositorProxy.h", |
38 "CompositorProxyClient.cpp", | 39 "CompositorProxyClient.cpp", |
39 "CompositorProxyClient.h", | 40 "CompositorProxyClient.h", |
40 "ContainerNode.cpp", | 41 "ContainerNode.cpp", |
41 "ContextFeatures.cpp", | 42 "ContextFeatures.cpp", |
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 "shadow/SlotAssignment.h", | 387 "shadow/SlotAssignment.h", |
387 "shadow/SlotScopedTraversal.cpp", | 388 "shadow/SlotScopedTraversal.cpp", |
388 "shadow/SlotScopedTraversal.h", | 389 "shadow/SlotScopedTraversal.h", |
389 ] | 390 ] |
390 | 391 |
391 configs += [ | 392 configs += [ |
392 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 393 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
393 "//build/config/compiler:no_size_t_to_int_warning", | 394 "//build/config/compiler:no_size_t_to_int_warning", |
394 ] | 395 ] |
395 } | 396 } |
OLD | NEW |