| 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 "ClassicScript.cpp", |
| 36 "ClassicScript.h", |
| 35 "ClientRect.cpp", | 37 "ClientRect.cpp", |
| 36 "ClientRect.h", | 38 "ClientRect.h", |
| 37 "ClientRectList.cpp", | 39 "ClientRectList.cpp", |
| 38 "ClientRectList.h", | 40 "ClientRectList.h", |
| 39 "CollectionIndexCache.h", | 41 "CollectionIndexCache.h", |
| 40 "Comment.cpp", | 42 "Comment.cpp", |
| 41 "Comment.h", | 43 "Comment.h", |
| 42 "CompositorProxiedPropertySet.cpp", | 44 "CompositorProxiedPropertySet.cpp", |
| 43 "CompositorProxiedPropertySet.h", | 45 "CompositorProxiedPropertySet.h", |
| 44 "CompositorProxy.cpp", | 46 "CompositorProxy.cpp", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 "ResizeObserver.cpp", | 258 "ResizeObserver.cpp", |
| 257 "ResizeObserver.h", | 259 "ResizeObserver.h", |
| 258 "ResizeObserverCallback.h", | 260 "ResizeObserverCallback.h", |
| 259 "ResizeObserverController.cpp", | 261 "ResizeObserverController.cpp", |
| 260 "ResizeObserverController.h", | 262 "ResizeObserverController.h", |
| 261 "ResizeObserverEntry.cpp", | 263 "ResizeObserverEntry.cpp", |
| 262 "ResizeObserverEntry.h", | 264 "ResizeObserverEntry.h", |
| 263 "SandboxFlags.cpp", | 265 "SandboxFlags.cpp", |
| 264 "SandboxFlags.h", | 266 "SandboxFlags.h", |
| 265 "ScopedWindowFocusAllowedIndicator.h", | 267 "ScopedWindowFocusAllowedIndicator.h", |
| 268 "Script.h", |
| 266 "ScriptElementBase.cpp", | 269 "ScriptElementBase.cpp", |
| 267 "ScriptElementBase.h", | 270 "ScriptElementBase.h", |
| 268 "ScriptLoader.cpp", | 271 "ScriptLoader.cpp", |
| 269 "ScriptLoader.h", | 272 "ScriptLoader.h", |
| 270 "ScriptModuleResolver.h", | 273 "ScriptModuleResolver.h", |
| 271 "ScriptModuleResolverImpl.cpp", | 274 "ScriptModuleResolverImpl.cpp", |
| 272 "ScriptModuleResolverImpl.h", | 275 "ScriptModuleResolverImpl.h", |
| 273 "ScriptRunner.cpp", | 276 "ScriptRunner.cpp", |
| 274 "ScriptRunner.h", | 277 "ScriptRunner.h", |
| 275 "ScriptableDocumentParser.cpp", | 278 "ScriptableDocumentParser.cpp", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 "shadow/SlotAssignment.h", | 439 "shadow/SlotAssignment.h", |
| 437 "shadow/SlotScopedTraversal.cpp", | 440 "shadow/SlotScopedTraversal.cpp", |
| 438 "shadow/SlotScopedTraversal.h", | 441 "shadow/SlotScopedTraversal.h", |
| 439 ] | 442 ] |
| 440 | 443 |
| 441 configs += [ | 444 configs += [ |
| 442 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 443 "//build/config/compiler:no_size_t_to_int_warning", | 446 "//build/config/compiler:no_size_t_to_int_warning", |
| 444 ] | 447 ] |
| 445 } | 448 } |
| OLD | NEW |