Chromium Code Reviews| 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 27 matching lines...) Expand all Loading... | |
| 38 "CompositorProxiedPropertySet.h", | 38 "CompositorProxiedPropertySet.h", |
| 39 "CompositorProxy.cpp", | 39 "CompositorProxy.cpp", |
| 40 "CompositorProxy.h", | 40 "CompositorProxy.h", |
| 41 "CompositorProxyClient.h", | 41 "CompositorProxyClient.h", |
| 42 "CompositorWorkerProxyClient.cpp", | 42 "CompositorWorkerProxyClient.cpp", |
| 43 "CompositorWorkerProxyClient.h", | 43 "CompositorWorkerProxyClient.h", |
| 44 "ContainerNode.cpp", | 44 "ContainerNode.cpp", |
| 45 "ContainerNode.h", | 45 "ContainerNode.h", |
| 46 "ContextFeatures.cpp", | 46 "ContextFeatures.cpp", |
| 47 "ContextFeatures.h", | 47 "ContextFeatures.h", |
| 48 "ContextFeaturesClientImpl.cpp", | |
| 49 "ContextFeaturesClientImpl.h", | |
|
kinuko
2017/03/31 16:13:12
Moved from Source/web as they no longer has depend
| |
| 48 "ContextLifecycleNotifier.cpp", | 50 "ContextLifecycleNotifier.cpp", |
| 49 "ContextLifecycleNotifier.h", | 51 "ContextLifecycleNotifier.h", |
| 50 "ContextLifecycleObserver.cpp", | 52 "ContextLifecycleObserver.cpp", |
| 51 "ContextLifecycleObserver.h", | 53 "ContextLifecycleObserver.h", |
| 52 "DOMArrayBuffer.cpp", | 54 "DOMArrayBuffer.cpp", |
| 53 "DOMArrayBuffer.h", | 55 "DOMArrayBuffer.h", |
| 54 "DOMArrayBufferBase.h", | 56 "DOMArrayBufferBase.h", |
| 55 "DOMArrayBufferView.h", | 57 "DOMArrayBufferView.h", |
| 56 "DOMArrayPiece.cpp", | 58 "DOMArrayPiece.cpp", |
| 57 "DOMArrayPiece.h", | 59 "DOMArrayPiece.h", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 418 "shadow/SlotAssignment.h", | 420 "shadow/SlotAssignment.h", |
| 419 "shadow/SlotScopedTraversal.cpp", | 421 "shadow/SlotScopedTraversal.cpp", |
| 420 "shadow/SlotScopedTraversal.h", | 422 "shadow/SlotScopedTraversal.h", |
| 421 ] | 423 ] |
| 422 | 424 |
| 423 configs += [ | 425 configs += [ |
| 424 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 426 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 425 "//build/config/compiler:no_size_t_to_int_warning", | 427 "//build/config/compiler:no_size_t_to_int_warning", |
| 426 ] | 428 ] |
| 427 } | 429 } |
| OLD | NEW |