| 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", | |
| 37 "ClassicScript.cpp", | 35 "ClassicScript.cpp", |
| 38 "ClassicScript.h", | 36 "ClassicScript.h", |
| 39 "ClientRect.cpp", | 37 "ClientRect.cpp", |
| 40 "ClientRect.h", | 38 "ClientRect.h", |
| 41 "ClientRectList.cpp", | 39 "ClientRectList.cpp", |
| 42 "ClientRectList.h", | 40 "ClientRectList.h", |
| 43 "CollectionIndexCache.h", | 41 "CollectionIndexCache.h", |
| 44 "Comment.cpp", | 42 "Comment.cpp", |
| 45 "Comment.h", | 43 "Comment.h", |
| 46 "CompositorProxiedPropertySet.cpp", | 44 "CompositorProxiedPropertySet.cpp", |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 "shadow/SlotAssignment.h", | 439 "shadow/SlotAssignment.h", |
| 442 "shadow/SlotScopedTraversal.cpp", | 440 "shadow/SlotScopedTraversal.cpp", |
| 443 "shadow/SlotScopedTraversal.h", | 441 "shadow/SlotScopedTraversal.h", |
| 444 ] | 442 ] |
| 445 | 443 |
| 446 configs += [ | 444 configs += [ |
| 447 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 448 "//build/config/compiler:no_size_t_to_int_warning", | 446 "//build/config/compiler:no_size_t_to_int_warning", |
| 449 ] | 447 ] |
| 450 } | 448 } |
| OLD | NEW |