| 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 19 matching lines...) Expand all Loading... |
| 30 "ChildListMutationScope.h", | 30 "ChildListMutationScope.h", |
| 31 "ChildNode.h", | 31 "ChildNode.h", |
| 32 "ChildNodeList.cpp", | 32 "ChildNodeList.cpp", |
| 33 "ChildNodeList.h", | 33 "ChildNodeList.h", |
| 34 "ClassCollection.cpp", | 34 "ClassCollection.cpp", |
| 35 "ClassCollection.h", | 35 "ClassCollection.h", |
| 36 "ClassicPendingScript.cpp", | 36 "ClassicPendingScript.cpp", |
| 37 "ClassicPendingScript.h", | 37 "ClassicPendingScript.h", |
| 38 "ClassicScript.cpp", | 38 "ClassicScript.cpp", |
| 39 "ClassicScript.h", | 39 "ClassicScript.h", |
| 40 "ClientRect.cpp", | |
| 41 "ClientRect.h", | |
| 42 "ClientRectList.cpp", | 40 "ClientRectList.cpp", |
| 43 "ClientRectList.h", | 41 "ClientRectList.h", |
| 44 "CollectionIndexCache.h", | 42 "CollectionIndexCache.h", |
| 45 "Comment.cpp", | 43 "Comment.cpp", |
| 46 "Comment.h", | 44 "Comment.h", |
| 47 "CompositorProxiedPropertySet.cpp", | 45 "CompositorProxiedPropertySet.cpp", |
| 48 "CompositorProxiedPropertySet.h", | 46 "CompositorProxiedPropertySet.h", |
| 49 "CompositorProxy.cpp", | 47 "CompositorProxy.cpp", |
| 50 "CompositorProxy.h", | 48 "CompositorProxy.h", |
| 51 "CompositorProxyClient.h", | 49 "CompositorProxyClient.h", |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 "shadow/SlotAssignment.h", | 444 "shadow/SlotAssignment.h", |
| 447 "shadow/SlotScopedTraversal.cpp", | 445 "shadow/SlotScopedTraversal.cpp", |
| 448 "shadow/SlotScopedTraversal.h", | 446 "shadow/SlotScopedTraversal.h", |
| 449 ] | 447 ] |
| 450 | 448 |
| 451 configs += [ | 449 configs += [ |
| 452 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 450 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 453 "//build/config/compiler:no_size_t_to_int_warning", | 451 "//build/config/compiler:no_size_t_to_int_warning", |
| 454 ] | 452 ] |
| 455 } | 453 } |
| OLD | NEW |