| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "ExecutionContext.h", | 155 "ExecutionContext.h", |
| 156 "ExecutionContextTask.h", | 156 "ExecutionContextTask.h", |
| 157 "FirstLetterPseudoElement.cpp", | 157 "FirstLetterPseudoElement.cpp", |
| 158 "FirstLetterPseudoElement.h", | 158 "FirstLetterPseudoElement.h", |
| 159 "FlexibleArrayBufferView.h", | 159 "FlexibleArrayBufferView.h", |
| 160 "FrameRequestCallback.h", | 160 "FrameRequestCallback.h", |
| 161 "FrameRequestCallbackCollection.cpp", | 161 "FrameRequestCallbackCollection.cpp", |
| 162 "FrameRequestCallbackCollection.h", | 162 "FrameRequestCallbackCollection.h", |
| 163 "Fullscreen.cpp", | 163 "Fullscreen.cpp", |
| 164 "Fullscreen.h", | 164 "Fullscreen.h", |
| 165 "FunctionStringCallback.h", |
| 165 "GlobalEventHandlers.h", | 166 "GlobalEventHandlers.h", |
| 166 "IconURL.cpp", | 167 "IconURL.cpp", |
| 167 "IconURL.h", | 168 "IconURL.h", |
| 168 "IdTargetObserver.cpp", | 169 "IdTargetObserver.cpp", |
| 169 "IdTargetObserver.h", | 170 "IdTargetObserver.h", |
| 170 "IdTargetObserverRegistry.cpp", | 171 "IdTargetObserverRegistry.cpp", |
| 171 "IdTargetObserverRegistry.h", | 172 "IdTargetObserverRegistry.h", |
| 172 "IdleDeadline.cpp", | 173 "IdleDeadline.cpp", |
| 173 "IdleDeadline.h", | 174 "IdleDeadline.h", |
| 174 "IdleRequestCallback.h", | 175 "IdleRequestCallback.h", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 "ShadowTreeStyleSheetCollection.cpp", | 297 "ShadowTreeStyleSheetCollection.cpp", |
| 297 "ShadowTreeStyleSheetCollection.h", | 298 "ShadowTreeStyleSheetCollection.h", |
| 298 "SimulatedClickOptions.h", | 299 "SimulatedClickOptions.h", |
| 299 "SinkDocument.cpp", | 300 "SinkDocument.cpp", |
| 300 "SinkDocument.h", | 301 "SinkDocument.h", |
| 301 "SpaceSplitString.cpp", | 302 "SpaceSplitString.cpp", |
| 302 "SpaceSplitString.h", | 303 "SpaceSplitString.h", |
| 303 "StaticNodeList.h", | 304 "StaticNodeList.h", |
| 304 "StaticRange.cpp", | 305 "StaticRange.cpp", |
| 305 "StaticRange.h", | 306 "StaticRange.h", |
| 306 "StringCallback.h", | |
| 307 "StyleChangeReason.cpp", | 307 "StyleChangeReason.cpp", |
| 308 "StyleChangeReason.h", | 308 "StyleChangeReason.h", |
| 309 "StyleElement.cpp", | 309 "StyleElement.cpp", |
| 310 "StyleElement.h", | 310 "StyleElement.h", |
| 311 "StyleEngine.cpp", | 311 "StyleEngine.cpp", |
| 312 "StyleEngine.h", | 312 "StyleEngine.h", |
| 313 "StyleEngineContext.cpp", | 313 "StyleEngineContext.cpp", |
| 314 "StyleEngineContext.h", | 314 "StyleEngineContext.h", |
| 315 "StyleSheetCandidate.cpp", | 315 "StyleSheetCandidate.cpp", |
| 316 "StyleSheetCandidate.h", | 316 "StyleSheetCandidate.h", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "shadow/SlotAssignment.h", | 447 "shadow/SlotAssignment.h", |
| 448 "shadow/SlotScopedTraversal.cpp", | 448 "shadow/SlotScopedTraversal.cpp", |
| 449 "shadow/SlotScopedTraversal.h", | 449 "shadow/SlotScopedTraversal.h", |
| 450 ] | 450 ] |
| 451 | 451 |
| 452 configs += [ | 452 configs += [ |
| 453 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 453 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 454 "//build/config/compiler:no_size_t_to_int_warning", | 454 "//build/config/compiler:no_size_t_to_int_warning", |
| 455 ] | 455 ] |
| 456 } | 456 } |
| OLD | NEW |