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