| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "CompositorProxiedPropertySet.h", | 43 "CompositorProxiedPropertySet.h", |
| 44 "CompositorProxy.cpp", | 44 "CompositorProxy.cpp", |
| 45 "CompositorProxy.h", | 45 "CompositorProxy.h", |
| 46 "CompositorProxyClient.h", | 46 "CompositorProxyClient.h", |
| 47 "CompositorWorkerProxyClient.cpp", | 47 "CompositorWorkerProxyClient.cpp", |
| 48 "CompositorWorkerProxyClient.h", | 48 "CompositorWorkerProxyClient.h", |
| 49 "ContainerNode.cpp", | 49 "ContainerNode.cpp", |
| 50 "ContainerNode.h", | 50 "ContainerNode.h", |
| 51 "ContextFeatures.cpp", | 51 "ContextFeatures.cpp", |
| 52 "ContextFeatures.h", | 52 "ContextFeatures.h", |
| 53 "ContextFeaturesClientImpl.cpp", |
| 54 "ContextFeaturesClientImpl.h", |
| 53 "ContextLifecycleNotifier.cpp", | 55 "ContextLifecycleNotifier.cpp", |
| 54 "ContextLifecycleNotifier.h", | 56 "ContextLifecycleNotifier.h", |
| 55 "ContextLifecycleObserver.cpp", | 57 "ContextLifecycleObserver.cpp", |
| 56 "ContextLifecycleObserver.h", | 58 "ContextLifecycleObserver.h", |
| 57 "DOMArrayBuffer.cpp", | 59 "DOMArrayBuffer.cpp", |
| 58 "DOMArrayBuffer.h", | 60 "DOMArrayBuffer.h", |
| 59 "DOMArrayBufferBase.h", | 61 "DOMArrayBufferBase.h", |
| 60 "DOMArrayBufferView.h", | 62 "DOMArrayBufferView.h", |
| 61 "DOMArrayPiece.cpp", | 63 "DOMArrayPiece.cpp", |
| 62 "DOMArrayPiece.h", | 64 "DOMArrayPiece.h", |
| (...skipping 369 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 |