| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 "ResizeObserverEntry.cpp", | 261 "ResizeObserverEntry.cpp", |
| 262 "ResizeObserverEntry.h", | 262 "ResizeObserverEntry.h", |
| 263 "SandboxFlags.cpp", | 263 "SandboxFlags.cpp", |
| 264 "SandboxFlags.h", | 264 "SandboxFlags.h", |
| 265 "ScopedWindowFocusAllowedIndicator.h", | 265 "ScopedWindowFocusAllowedIndicator.h", |
| 266 "ScriptElementBase.cpp", | 266 "ScriptElementBase.cpp", |
| 267 "ScriptElementBase.h", | 267 "ScriptElementBase.h", |
| 268 "ScriptLoader.cpp", | 268 "ScriptLoader.cpp", |
| 269 "ScriptLoader.h", | 269 "ScriptLoader.h", |
| 270 "ScriptModuleResolver.h", | 270 "ScriptModuleResolver.h", |
| 271 "ScriptModuleResolverImpl.cpp", |
| 272 "ScriptModuleResolverImpl.h", |
| 271 "ScriptRunner.cpp", | 273 "ScriptRunner.cpp", |
| 272 "ScriptRunner.h", | 274 "ScriptRunner.h", |
| 273 "ScriptableDocumentParser.cpp", | 275 "ScriptableDocumentParser.cpp", |
| 274 "ScriptableDocumentParser.h", | 276 "ScriptableDocumentParser.h", |
| 275 "ScriptedAnimationController.cpp", | 277 "ScriptedAnimationController.cpp", |
| 276 "ScriptedAnimationController.h", | 278 "ScriptedAnimationController.h", |
| 277 "ScriptedIdleTaskController.cpp", | 279 "ScriptedIdleTaskController.cpp", |
| 278 "ScriptedIdleTaskController.h", | 280 "ScriptedIdleTaskController.h", |
| 279 "SecurityContext.cpp", | 281 "SecurityContext.cpp", |
| 280 "SecurityContext.h", | 282 "SecurityContext.h", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 "shadow/SlotAssignment.h", | 436 "shadow/SlotAssignment.h", |
| 435 "shadow/SlotScopedTraversal.cpp", | 437 "shadow/SlotScopedTraversal.cpp", |
| 436 "shadow/SlotScopedTraversal.h", | 438 "shadow/SlotScopedTraversal.h", |
| 437 ] | 439 ] |
| 438 | 440 |
| 439 configs += [ | 441 configs += [ |
| 440 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 442 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 441 "//build/config/compiler:no_size_t_to_int_warning", | 443 "//build/config/compiler:no_size_t_to_int_warning", |
| 442 ] | 444 ] |
| 443 } | 445 } |
| OLD | NEW |