| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "ResizeObserverEntry.h", | 266 "ResizeObserverEntry.h", |
| 267 "SandboxFlags.cpp", | 267 "SandboxFlags.cpp", |
| 268 "SandboxFlags.h", | 268 "SandboxFlags.h", |
| 269 "ScopedWindowFocusAllowedIndicator.h", | 269 "ScopedWindowFocusAllowedIndicator.h", |
| 270 "Script.h", | 270 "Script.h", |
| 271 "ScriptElementBase.cpp", | 271 "ScriptElementBase.cpp", |
| 272 "ScriptElementBase.h", | 272 "ScriptElementBase.h", |
| 273 "ScriptLoader.cpp", | 273 "ScriptLoader.cpp", |
| 274 "ScriptLoader.h", | 274 "ScriptLoader.h", |
| 275 "ScriptModuleResolver.h", | 275 "ScriptModuleResolver.h", |
| 276 "ScriptModuleResolverImpl.cpp", |
| 277 "ScriptModuleResolverImpl.h", |
| 276 "ScriptRunner.cpp", | 278 "ScriptRunner.cpp", |
| 277 "ScriptRunner.h", | 279 "ScriptRunner.h", |
| 278 "ScriptableDocumentParser.cpp", | 280 "ScriptableDocumentParser.cpp", |
| 279 "ScriptableDocumentParser.h", | 281 "ScriptableDocumentParser.h", |
| 280 "ScriptedAnimationController.cpp", | 282 "ScriptedAnimationController.cpp", |
| 281 "ScriptedAnimationController.h", | 283 "ScriptedAnimationController.h", |
| 282 "ScriptedIdleTaskController.cpp", | 284 "ScriptedIdleTaskController.cpp", |
| 283 "ScriptedIdleTaskController.h", | 285 "ScriptedIdleTaskController.h", |
| 284 "SecurityContext.cpp", | 286 "SecurityContext.cpp", |
| 285 "SecurityContext.h", | 287 "SecurityContext.h", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 "shadow/SlotAssignment.h", | 441 "shadow/SlotAssignment.h", |
| 440 "shadow/SlotScopedTraversal.cpp", | 442 "shadow/SlotScopedTraversal.cpp", |
| 441 "shadow/SlotScopedTraversal.h", | 443 "shadow/SlotScopedTraversal.h", |
| 442 ] | 444 ] |
| 443 | 445 |
| 444 configs += [ | 446 configs += [ |
| 445 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 447 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 446 "//build/config/compiler:no_size_t_to_int_warning", | 448 "//build/config/compiler:no_size_t_to_int_warning", |
| 447 ] | 449 ] |
| 448 } | 450 } |
| OLD | NEW |