| 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 25 matching lines...) Expand all  Loading... | 
| 36     "CompositorProxiedPropertySet.h", | 36     "CompositorProxiedPropertySet.h", | 
| 37     "CompositorProxy.cpp", | 37     "CompositorProxy.cpp", | 
| 38     "CompositorProxy.h", | 38     "CompositorProxy.h", | 
| 39     "CompositorProxyClient.cpp", | 39     "CompositorProxyClient.cpp", | 
| 40     "CompositorProxyClient.h", | 40     "CompositorProxyClient.h", | 
| 41     "ContainerNode.cpp", | 41     "ContainerNode.cpp", | 
| 42     "ContextFeatures.cpp", | 42     "ContextFeatures.cpp", | 
| 43     "ContextFeatures.h", | 43     "ContextFeatures.h", | 
| 44     "ContextLifecycleNotifier.cpp", | 44     "ContextLifecycleNotifier.cpp", | 
| 45     "ContextLifecycleNotifier.h", | 45     "ContextLifecycleNotifier.h", | 
|  | 46     "ContextLifecycleObserver.cpp", | 
| 46     "ContextLifecycleObserver.h", | 47     "ContextLifecycleObserver.h", | 
| 47     "DOMArrayBuffer.cpp", | 48     "DOMArrayBuffer.cpp", | 
| 48     "DOMArrayBuffer.h", | 49     "DOMArrayBuffer.h", | 
| 49     "DOMArrayBufferBase.h", | 50     "DOMArrayBufferBase.h", | 
| 50     "DOMArrayBufferView.h", | 51     "DOMArrayBufferView.h", | 
| 51     "DOMArrayPiece.cpp", | 52     "DOMArrayPiece.cpp", | 
| 52     "DOMArrayPiece.h", | 53     "DOMArrayPiece.h", | 
| 53     "DOMDataView.cpp", | 54     "DOMDataView.cpp", | 
| 54     "DOMDataView.h", | 55     "DOMDataView.h", | 
| 55     "DOMException.cpp", | 56     "DOMException.cpp", | 
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 392     "shadow/SlotAssignment.h", | 393     "shadow/SlotAssignment.h", | 
| 393     "shadow/SlotScopedTraversal.cpp", | 394     "shadow/SlotScopedTraversal.cpp", | 
| 394     "shadow/SlotScopedTraversal.h", | 395     "shadow/SlotScopedTraversal.h", | 
| 395   ] | 396   ] | 
| 396 | 397 | 
| 397   configs += [ | 398   configs += [ | 
| 398     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 399     # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 
| 399     "//build/config/compiler:no_size_t_to_int_warning", | 400     "//build/config/compiler:no_size_t_to_int_warning", | 
| 400   ] | 401   ] | 
| 401 } | 402 } | 
| OLD | NEW | 
|---|