| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "ContextLifecycleNotifier.h", | 44 "ContextLifecycleNotifier.h", |
| 45 "ContextLifecycleObserver.h", | 45 "ContextLifecycleObserver.h", |
| 46 "DOMArrayBuffer.cpp", | 46 "DOMArrayBuffer.cpp", |
| 47 "DOMArrayBuffer.h", | 47 "DOMArrayBuffer.h", |
| 48 "DOMArrayBufferBase.h", | 48 "DOMArrayBufferBase.h", |
| 49 "DOMArrayBufferView.h", | 49 "DOMArrayBufferView.h", |
| 50 "DOMArrayPiece.cpp", | 50 "DOMArrayPiece.cpp", |
| 51 "DOMArrayPiece.h", | 51 "DOMArrayPiece.h", |
| 52 "DOMDataView.cpp", | 52 "DOMDataView.cpp", |
| 53 "DOMDataView.h", | 53 "DOMDataView.h", |
| 54 "DOMError.cpp", | |
| 55 "DOMError.h", | |
| 56 "DOMException.cpp", | 54 "DOMException.cpp", |
| 57 "DOMException.h", | 55 "DOMException.h", |
| 58 "DOMImplementation.cpp", | 56 "DOMImplementation.cpp", |
| 59 "DOMMatrix.cpp", | 57 "DOMMatrix.cpp", |
| 60 "DOMMatrix.h", | 58 "DOMMatrix.h", |
| 61 "DOMMatrixReadOnly.cpp", | 59 "DOMMatrixReadOnly.cpp", |
| 62 "DOMMatrixReadOnly.h", | 60 "DOMMatrixReadOnly.h", |
| 63 "DOMNodeIds.cpp", | 61 "DOMNodeIds.cpp", |
| 64 "DOMNodeIds.h", | 62 "DOMNodeIds.h", |
| 65 "DOMPoint.cpp", | 63 "DOMPoint.cpp", |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "shadow/SlotAssignment.h", | 385 "shadow/SlotAssignment.h", |
| 388 "shadow/SlotScopedTraversal.cpp", | 386 "shadow/SlotScopedTraversal.cpp", |
| 389 "shadow/SlotScopedTraversal.h", | 387 "shadow/SlotScopedTraversal.h", |
| 390 ] | 388 ] |
| 391 | 389 |
| 392 configs += [ | 390 configs += [ |
| 393 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 394 "//build/config/compiler:no_size_t_to_int_warning", | 392 "//build/config/compiler:no_size_t_to_int_warning", |
| 395 ] | 393 ] |
| 396 } | 394 } |
| OLD | NEW |