| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "ElementRareData.cpp", | 148 "ElementRareData.cpp", |
| 149 "ElementRareData.h", | 149 "ElementRareData.h", |
| 150 "ElementTraversal.h", | 150 "ElementTraversal.h", |
| 151 "ElementVisibilityObserver.cpp", | 151 "ElementVisibilityObserver.cpp", |
| 152 "ElementVisibilityObserver.h", | 152 "ElementVisibilityObserver.h", |
| 153 "EmptyNodeList.cpp", | 153 "EmptyNodeList.cpp", |
| 154 "EmptyNodeList.h", | 154 "EmptyNodeList.h", |
| 155 "ExceptionCode.h", | 155 "ExceptionCode.h", |
| 156 "ExecutionContext.cpp", | 156 "ExecutionContext.cpp", |
| 157 "ExecutionContext.h", | 157 "ExecutionContext.h", |
| 158 "ExecutionContextTask.h", | |
| 159 "FirstLetterPseudoElement.cpp", | 158 "FirstLetterPseudoElement.cpp", |
| 160 "FirstLetterPseudoElement.h", | 159 "FirstLetterPseudoElement.h", |
| 161 "FlexibleArrayBufferView.h", | 160 "FlexibleArrayBufferView.h", |
| 162 "FrameRequestCallback.h", | 161 "FrameRequestCallback.h", |
| 163 "FrameRequestCallbackCollection.cpp", | 162 "FrameRequestCallbackCollection.cpp", |
| 164 "FrameRequestCallbackCollection.h", | 163 "FrameRequestCallbackCollection.h", |
| 165 "Fullscreen.cpp", | 164 "Fullscreen.cpp", |
| 166 "Fullscreen.h", | 165 "Fullscreen.h", |
| 167 "FunctionStringCallback.h", | 166 "FunctionStringCallback.h", |
| 168 "GlobalEventHandlers.h", | 167 "GlobalEventHandlers.h", |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 "shadow/SlotAssignment.h", | 449 "shadow/SlotAssignment.h", |
| 451 "shadow/SlotScopedTraversal.cpp", | 450 "shadow/SlotScopedTraversal.cpp", |
| 452 "shadow/SlotScopedTraversal.h", | 451 "shadow/SlotScopedTraversal.h", |
| 453 ] | 452 ] |
| 454 | 453 |
| 455 configs += [ | 454 configs += [ |
| 456 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 455 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 457 "//build/config/compiler:no_size_t_to_int_warning", | 456 "//build/config/compiler:no_size_t_to_int_warning", |
| 458 ] | 457 ] |
| 459 } | 458 } |
| OLD | NEW |