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 14 matching lines...) Expand all Loading... |
25 "CharacterData.h", | 25 "CharacterData.h", |
26 "ChildFrameDisconnector.cpp", | 26 "ChildFrameDisconnector.cpp", |
27 "ChildFrameDisconnector.h", | 27 "ChildFrameDisconnector.h", |
28 "ChildListMutationScope.cpp", | 28 "ChildListMutationScope.cpp", |
29 "ChildListMutationScope.h", | 29 "ChildListMutationScope.h", |
30 "ChildNode.h", | 30 "ChildNode.h", |
31 "ChildNodeList.cpp", | 31 "ChildNodeList.cpp", |
32 "ChildNodeList.h", | 32 "ChildNodeList.h", |
33 "ClassCollection.cpp", | 33 "ClassCollection.cpp", |
34 "ClassCollection.h", | 34 "ClassCollection.h", |
| 35 "ClassicPendingScript.cpp", |
| 36 "ClassicPendingScript.h", |
35 "ClassicScript.cpp", | 37 "ClassicScript.cpp", |
36 "ClassicScript.h", | 38 "ClassicScript.h", |
37 "ClientRect.cpp", | 39 "ClientRect.cpp", |
38 "ClientRect.h", | 40 "ClientRect.h", |
39 "ClientRectList.cpp", | 41 "ClientRectList.cpp", |
40 "ClientRectList.h", | 42 "ClientRectList.h", |
41 "CollectionIndexCache.h", | 43 "CollectionIndexCache.h", |
42 "Comment.cpp", | 44 "Comment.cpp", |
43 "Comment.h", | 45 "Comment.h", |
44 "CompositorProxiedPropertySet.cpp", | 46 "CompositorProxiedPropertySet.cpp", |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 "shadow/SlotAssignment.h", | 439 "shadow/SlotAssignment.h", |
438 "shadow/SlotScopedTraversal.cpp", | 440 "shadow/SlotScopedTraversal.cpp", |
439 "shadow/SlotScopedTraversal.h", | 441 "shadow/SlotScopedTraversal.h", |
440 ] | 442 ] |
441 | 443 |
442 configs += [ | 444 configs += [ |
443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
444 "//build/config/compiler:no_size_t_to_int_warning", | 446 "//build/config/compiler:no_size_t_to_int_warning", |
445 ] | 447 ] |
446 } | 448 } |
OLD | NEW |