| 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 15 matching lines...) Expand all Loading... |
| 26 "CharacterData.h", | 26 "CharacterData.h", |
| 27 "ChildFrameDisconnector.cpp", | 27 "ChildFrameDisconnector.cpp", |
| 28 "ChildFrameDisconnector.h", | 28 "ChildFrameDisconnector.h", |
| 29 "ChildListMutationScope.cpp", | 29 "ChildListMutationScope.cpp", |
| 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", |
| 37 "ClassicPendingScript.h", |
| 36 "ClassicScript.cpp", | 38 "ClassicScript.cpp", |
| 37 "ClassicScript.h", | 39 "ClassicScript.h", |
| 38 "ClientRect.cpp", | 40 "ClientRect.cpp", |
| 39 "ClientRect.h", | 41 "ClientRect.h", |
| 40 "ClientRectList.cpp", | 42 "ClientRectList.cpp", |
| 41 "ClientRectList.h", | 43 "ClientRectList.h", |
| 42 "CollectionIndexCache.h", | 44 "CollectionIndexCache.h", |
| 43 "Comment.cpp", | 45 "Comment.cpp", |
| 44 "Comment.h", | 46 "Comment.h", |
| 45 "CompositorProxiedPropertySet.cpp", | 47 "CompositorProxiedPropertySet.cpp", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 "MessageChannel.cpp", | 193 "MessageChannel.cpp", |
| 192 "MessageChannel.h", | 194 "MessageChannel.h", |
| 193 "MessagePort.cpp", | 195 "MessagePort.cpp", |
| 194 "MessagePort.h", | 196 "MessagePort.h", |
| 195 "Modulator.cpp", | 197 "Modulator.cpp", |
| 196 "Modulator.h", | 198 "Modulator.h", |
| 197 "ModulatorImpl.cpp", | 199 "ModulatorImpl.cpp", |
| 198 "ModulatorImpl.h", | 200 "ModulatorImpl.h", |
| 199 "ModuleMap.cpp", | 201 "ModuleMap.cpp", |
| 200 "ModuleMap.h", | 202 "ModuleMap.h", |
| 203 "ModulePendingScript.cpp", |
| 204 "ModulePendingScript.h", |
| 201 "ModuleScript.cpp", | 205 "ModuleScript.cpp", |
| 202 "ModuleScript.h", | 206 "ModuleScript.h", |
| 203 "MutationCallback.h", | 207 "MutationCallback.h", |
| 204 "MutationObserver.cpp", | 208 "MutationObserver.cpp", |
| 205 "MutationObserver.h", | 209 "MutationObserver.h", |
| 206 "MutationObserverInterestGroup.cpp", | 210 "MutationObserverInterestGroup.cpp", |
| 207 "MutationObserverInterestGroup.h", | 211 "MutationObserverInterestGroup.h", |
| 208 "MutationObserverRegistration.cpp", | 212 "MutationObserverRegistration.cpp", |
| 209 "MutationObserverRegistration.h", | 213 "MutationObserverRegistration.h", |
| 210 "MutationRecord.cpp", | 214 "MutationRecord.cpp", |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 "shadow/SlotAssignment.h", | 446 "shadow/SlotAssignment.h", |
| 443 "shadow/SlotScopedTraversal.cpp", | 447 "shadow/SlotScopedTraversal.cpp", |
| 444 "shadow/SlotScopedTraversal.h", | 448 "shadow/SlotScopedTraversal.h", |
| 445 ] | 449 ] |
| 446 | 450 |
| 447 configs += [ | 451 configs += [ |
| 448 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 452 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 449 "//build/config/compiler:no_size_t_to_int_warning", | 453 "//build/config/compiler:no_size_t_to_int_warning", |
| 450 ] | 454 ] |
| 451 } | 455 } |
| OLD | NEW |