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", | |
68 "DOMNodeIds.cpp", | 63 "DOMNodeIds.cpp", |
69 "DOMNodeIds.h", | 64 "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", | |
80 "DOMSharedArrayBuffer.cpp", | 65 "DOMSharedArrayBuffer.cpp", |
81 "DOMSharedArrayBuffer.h", | 66 "DOMSharedArrayBuffer.h", |
82 "DOMStringList.cpp", | 67 "DOMStringList.cpp", |
83 "DOMStringList.h", | 68 "DOMStringList.h", |
84 "DOMStringMap.cpp", | 69 "DOMStringMap.cpp", |
85 "DOMStringMap.h", | 70 "DOMStringMap.h", |
86 "DOMTokenList.cpp", | 71 "DOMTokenList.cpp", |
87 "DOMTokenList.h", | 72 "DOMTokenList.h", |
88 "DOMTypedArray.cpp", | 73 "DOMTypedArray.cpp", |
89 "DOMTypedArray.h", | 74 "DOMTypedArray.h", |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 "shadow/SlotAssignment.h", | 409 "shadow/SlotAssignment.h", |
425 "shadow/SlotScopedTraversal.cpp", | 410 "shadow/SlotScopedTraversal.cpp", |
426 "shadow/SlotScopedTraversal.h", | 411 "shadow/SlotScopedTraversal.h", |
427 ] | 412 ] |
428 | 413 |
429 configs += [ | 414 configs += [ |
430 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 415 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
431 "//build/config/compiler:no_size_t_to_int_warning", | 416 "//build/config/compiler:no_size_t_to_int_warning", |
432 ] | 417 ] |
433 } | 418 } |
OLD | NEW |