| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 "ResizeObserverCallback.h", | 241 "ResizeObserverCallback.h", |
| 242 "ResizeObserverController.cpp", | 242 "ResizeObserverController.cpp", |
| 243 "ResizeObserverController.h", | 243 "ResizeObserverController.h", |
| 244 "ResizeObserverEntry.cpp", | 244 "ResizeObserverEntry.cpp", |
| 245 "ResizeObserverEntry.h", | 245 "ResizeObserverEntry.h", |
| 246 "SandboxFlags.cpp", | 246 "SandboxFlags.cpp", |
| 247 "SandboxFlags.h", | 247 "SandboxFlags.h", |
| 248 "ScopedWindowFocusAllowedIndicator.h", | 248 "ScopedWindowFocusAllowedIndicator.h", |
| 249 "ScriptLoader.cpp", | 249 "ScriptLoader.cpp", |
| 250 "ScriptLoader.h", | 250 "ScriptLoader.h", |
| 251 "ScriptLoaderClient.cpp", |
| 252 "ScriptLoaderClient.h", |
| 251 "ScriptModuleResolver.h", | 253 "ScriptModuleResolver.h", |
| 252 "ScriptRunner.cpp", | 254 "ScriptRunner.cpp", |
| 253 "ScriptRunner.h", | 255 "ScriptRunner.h", |
| 254 "ScriptableDocumentParser.cpp", | 256 "ScriptableDocumentParser.cpp", |
| 255 "ScriptableDocumentParser.h", | 257 "ScriptableDocumentParser.h", |
| 256 "ScriptedAnimationController.cpp", | 258 "ScriptedAnimationController.cpp", |
| 257 "ScriptedAnimationController.h", | 259 "ScriptedAnimationController.h", |
| 258 "ScriptedIdleTaskController.cpp", | 260 "ScriptedIdleTaskController.cpp", |
| 259 "ScriptedIdleTaskController.h", | 261 "ScriptedIdleTaskController.h", |
| 260 "SecurityContext.cpp", | 262 "SecurityContext.cpp", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 "shadow/SlotAssignment.h", | 413 "shadow/SlotAssignment.h", |
| 412 "shadow/SlotScopedTraversal.cpp", | 414 "shadow/SlotScopedTraversal.cpp", |
| 413 "shadow/SlotScopedTraversal.h", | 415 "shadow/SlotScopedTraversal.h", |
| 414 ] | 416 ] |
| 415 | 417 |
| 416 configs += [ | 418 configs += [ |
| 417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 419 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 418 "//build/config/compiler:no_size_t_to_int_warning", | 420 "//build/config/compiler:no_size_t_to_int_warning", |
| 419 ] | 421 ] |
| 420 } | 422 } |
| OLD | NEW |