| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "LayoutTreeBuilder.h", | 170 "LayoutTreeBuilder.h", |
| 171 "LayoutTreeBuilderTraversal.cpp", | 171 "LayoutTreeBuilderTraversal.cpp", |
| 172 "LayoutTreeBuilderTraversal.h", | 172 "LayoutTreeBuilderTraversal.h", |
| 173 "LiveNodeList.cpp", | 173 "LiveNodeList.cpp", |
| 174 "LiveNodeList.h", | 174 "LiveNodeList.h", |
| 175 "LiveNodeListBase.cpp", | 175 "LiveNodeListBase.cpp", |
| 176 "LiveNodeListBase.h", | 176 "LiveNodeListBase.h", |
| 177 "MessageChannel.cpp", | 177 "MessageChannel.cpp", |
| 178 "MessageChannel.h", | 178 "MessageChannel.h", |
| 179 "MessagePort.cpp", | 179 "MessagePort.cpp", |
| 180 "Modulator.cpp", |
| 181 "Modulator.h", |
| 182 "ModulatorImpl.cpp", |
| 183 "ModulatorImpl.h", |
| 184 "ModuleMap.cpp", |
| 185 "ModuleMap.h", |
| 186 "ModuleScript.cpp", |
| 187 "ModuleScript.h", |
| 180 "MutationCallback.h", | 188 "MutationCallback.h", |
| 181 "MutationObserver.cpp", | 189 "MutationObserver.cpp", |
| 182 "MutationObserver.h", | 190 "MutationObserver.h", |
| 183 "MutationObserverInterestGroup.cpp", | 191 "MutationObserverInterestGroup.cpp", |
| 184 "MutationObserverInterestGroup.h", | 192 "MutationObserverInterestGroup.h", |
| 185 "MutationObserverRegistration.cpp", | 193 "MutationObserverRegistration.cpp", |
| 186 "MutationObserverRegistration.h", | 194 "MutationObserverRegistration.h", |
| 187 "MutationRecord.cpp", | 195 "MutationRecord.cpp", |
| 188 "MutationRecord.h", | 196 "MutationRecord.h", |
| 189 "NameNodeList.cpp", | 197 "NameNodeList.cpp", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 "QualifiedName.cpp", | 231 "QualifiedName.cpp", |
| 224 "Range.cpp", | 232 "Range.cpp", |
| 225 "RawDataDocumentParser.h", | 233 "RawDataDocumentParser.h", |
| 226 "RemoteSecurityContext.cpp", | 234 "RemoteSecurityContext.cpp", |
| 227 "RemoteSecurityContext.h", | 235 "RemoteSecurityContext.h", |
| 228 "SandboxFlags.cpp", | 236 "SandboxFlags.cpp", |
| 229 "SandboxFlags.h", | 237 "SandboxFlags.h", |
| 230 "ScopedWindowFocusAllowedIndicator.h", | 238 "ScopedWindowFocusAllowedIndicator.h", |
| 231 "ScriptLoader.cpp", | 239 "ScriptLoader.cpp", |
| 232 "ScriptLoader.h", | 240 "ScriptLoader.h", |
| 241 "ScriptModuleResolverImpl.cpp", |
| 242 "ScriptModuleResolverImpl.h", |
| 233 "ScriptRunner.cpp", | 243 "ScriptRunner.cpp", |
| 234 "ScriptRunner.h", | 244 "ScriptRunner.h", |
| 235 "ScriptableDocumentParser.cpp", | 245 "ScriptableDocumentParser.cpp", |
| 236 "ScriptableDocumentParser.h", | 246 "ScriptableDocumentParser.h", |
| 237 "ScriptedAnimationController.cpp", | 247 "ScriptedAnimationController.cpp", |
| 238 "ScriptedAnimationController.h", | 248 "ScriptedAnimationController.h", |
| 239 "ScriptedIdleTaskController.cpp", | 249 "ScriptedIdleTaskController.cpp", |
| 240 "ScriptedIdleTaskController.h", | 250 "ScriptedIdleTaskController.h", |
| 241 "SecurityContext.cpp", | 251 "SecurityContext.cpp", |
| 242 "SecurityContext.h", | 252 "SecurityContext.h", |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "shadow/SlotAssignment.h", | 400 "shadow/SlotAssignment.h", |
| 391 "shadow/SlotScopedTraversal.cpp", | 401 "shadow/SlotScopedTraversal.cpp", |
| 392 "shadow/SlotScopedTraversal.h", | 402 "shadow/SlotScopedTraversal.h", |
| 393 ] | 403 ] |
| 394 | 404 |
| 395 configs += [ | 405 configs += [ |
| 396 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 406 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 397 "//build/config/compiler:no_size_t_to_int_warning", | 407 "//build/config/compiler:no_size_t_to_int_warning", |
| 398 ] | 408 ] |
| 399 } | 409 } |
| OLD | NEW |