| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "DOMArrayBuffer.h", | 53 "DOMArrayBuffer.h", |
| 54 "DOMArrayBufferBase.h", | 54 "DOMArrayBufferBase.h", |
| 55 "DOMArrayBufferView.h", | 55 "DOMArrayBufferView.h", |
| 56 "DOMArrayPiece.cpp", | 56 "DOMArrayPiece.cpp", |
| 57 "DOMArrayPiece.h", | 57 "DOMArrayPiece.h", |
| 58 "DOMDataView.cpp", | 58 "DOMDataView.cpp", |
| 59 "DOMDataView.h", | 59 "DOMDataView.h", |
| 60 "DOMException.cpp", | 60 "DOMException.cpp", |
| 61 "DOMException.h", | 61 "DOMException.h", |
| 62 "DOMImplementation.cpp", | 62 "DOMImplementation.cpp", |
| 63 "DOMImplementation.h", |
| 64 "DOMMatrix.cpp", |
| 65 "DOMMatrix.h", |
| 66 "DOMMatrixReadOnly.cpp", |
| 67 "DOMMatrixReadOnly.h", |
| 63 "DOMNodeIds.cpp", | 68 "DOMNodeIds.cpp", |
| 64 "DOMNodeIds.h", | 69 "DOMNodeIds.h", |
| 70 "DOMPoint.cpp", |
| 71 "DOMPoint.h", |
| 72 "DOMPointReadOnly.cpp", |
| 73 "DOMPointReadOnly.h", |
| 74 "DOMQuad.cpp", |
| 75 "DOMQuad.h", |
| 76 "DOMRect.cpp", |
| 77 "DOMRect.h", |
| 78 "DOMRectReadOnly.cpp", |
| 79 "DOMRectReadOnly.h", |
| 65 "DOMSharedArrayBuffer.cpp", | 80 "DOMSharedArrayBuffer.cpp", |
| 66 "DOMSharedArrayBuffer.h", | 81 "DOMSharedArrayBuffer.h", |
| 67 "DOMStringList.cpp", | 82 "DOMStringList.cpp", |
| 68 "DOMStringList.h", | 83 "DOMStringList.h", |
| 69 "DOMStringMap.cpp", | 84 "DOMStringMap.cpp", |
| 70 "DOMStringMap.h", | 85 "DOMStringMap.h", |
| 71 "DOMTokenList.cpp", | 86 "DOMTokenList.cpp", |
| 72 "DOMTokenList.h", | 87 "DOMTokenList.h", |
| 73 "DOMTypedArray.cpp", | 88 "DOMTypedArray.cpp", |
| 74 "DOMTypedArray.h", | 89 "DOMTypedArray.h", |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 "shadow/SlotAssignment.h", | 424 "shadow/SlotAssignment.h", |
| 410 "shadow/SlotScopedTraversal.cpp", | 425 "shadow/SlotScopedTraversal.cpp", |
| 411 "shadow/SlotScopedTraversal.h", | 426 "shadow/SlotScopedTraversal.h", |
| 412 ] | 427 ] |
| 413 | 428 |
| 414 configs += [ | 429 configs += [ |
| 415 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 430 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 416 "//build/config/compiler:no_size_t_to_int_warning", | 431 "//build/config/compiler:no_size_t_to_int_warning", |
| 417 ] | 432 ] |
| 418 } | 433 } |
| OLD | NEW |