| 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 "custom/V0CustomElementScheduler.cpp", | 365 "custom/V0CustomElementScheduler.cpp", |
| 366 "custom/V0CustomElementScheduler.h", | 366 "custom/V0CustomElementScheduler.h", |
| 367 "custom/V0CustomElementSyncMicrotaskQueue.cpp", | 367 "custom/V0CustomElementSyncMicrotaskQueue.cpp", |
| 368 "custom/V0CustomElementSyncMicrotaskQueue.h", | 368 "custom/V0CustomElementSyncMicrotaskQueue.h", |
| 369 "custom/V0CustomElementUpgradeCandidateMap.cpp", | 369 "custom/V0CustomElementUpgradeCandidateMap.cpp", |
| 370 "custom/V0CustomElementUpgradeCandidateMap.h", | 370 "custom/V0CustomElementUpgradeCandidateMap.h", |
| 371 "shadow/DistributedNodes.cpp", | 371 "shadow/DistributedNodes.cpp", |
| 372 "shadow/DistributedNodes.h", | 372 "shadow/DistributedNodes.h", |
| 373 "shadow/ElementShadow.cpp", | 373 "shadow/ElementShadow.cpp", |
| 374 "shadow/ElementShadow.h", | 374 "shadow/ElementShadow.h", |
| 375 "shadow/ElementShadowV0.cpp", |
| 376 "shadow/ElementShadowV0.h", |
| 375 "shadow/FlatTreeTraversal.cpp", | 377 "shadow/FlatTreeTraversal.cpp", |
| 376 "shadow/FlatTreeTraversal.h", | 378 "shadow/FlatTreeTraversal.h", |
| 377 "shadow/InsertionPoint.cpp", | 379 "shadow/InsertionPoint.cpp", |
| 378 "shadow/InsertionPoint.h", | 380 "shadow/InsertionPoint.h", |
| 379 "shadow/SelectRuleFeatureSet.cpp", | 381 "shadow/SelectRuleFeatureSet.cpp", |
| 380 "shadow/SelectRuleFeatureSet.h", | 382 "shadow/SelectRuleFeatureSet.h", |
| 381 "shadow/ShadowRoot.cpp", | 383 "shadow/ShadowRoot.cpp", |
| 382 "shadow/ShadowRoot.h", | 384 "shadow/ShadowRoot.h", |
| 383 "shadow/ShadowRootRareDataV0.h", | 385 "shadow/ShadowRootRareDataV0.h", |
| 384 "shadow/SlotAssignment.cpp", | 386 "shadow/SlotAssignment.cpp", |
| 385 "shadow/SlotAssignment.h", | 387 "shadow/SlotAssignment.h", |
| 386 "shadow/SlotScopedTraversal.cpp", | 388 "shadow/SlotScopedTraversal.cpp", |
| 387 "shadow/SlotScopedTraversal.h", | 389 "shadow/SlotScopedTraversal.h", |
| 388 ] | 390 ] |
| 389 | 391 |
| 390 configs += [ | 392 configs += [ |
| 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 393 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 392 "//build/config/compiler:no_size_t_to_int_warning", | 394 "//build/config/compiler:no_size_t_to_int_warning", |
| 393 ] | 395 ] |
| 394 } | 396 } |
| OLD | NEW |