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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "DocumentOrShadowRoot.h", | 117 "DocumentOrShadowRoot.h", |
118 "DocumentOrderedList.cpp", | 118 "DocumentOrderedList.cpp", |
119 "DocumentOrderedList.h", | 119 "DocumentOrderedList.h", |
120 "DocumentOrderedMap.cpp", | 120 "DocumentOrderedMap.cpp", |
121 "DocumentOrderedMap.h", | 121 "DocumentOrderedMap.h", |
122 "DocumentParser.cpp", | 122 "DocumentParser.cpp", |
123 "DocumentParser.h", | 123 "DocumentParser.h", |
124 "DocumentParserClient.h", | 124 "DocumentParserClient.h", |
125 "DocumentParserTiming.cpp", | 125 "DocumentParserTiming.cpp", |
126 "DocumentParserTiming.h", | 126 "DocumentParserTiming.h", |
| 127 "DocumentShutdownNotifier.cpp", |
| 128 "DocumentShutdownNotifier.h", |
| 129 "DocumentShutdownObserver.cpp", |
| 130 "DocumentShutdownObserver.h", |
127 "DocumentStatisticsCollector.cpp", | 131 "DocumentStatisticsCollector.cpp", |
128 "DocumentStatisticsCollector.h", | 132 "DocumentStatisticsCollector.h", |
129 "DocumentStyleSheetCollection.cpp", | 133 "DocumentStyleSheetCollection.cpp", |
130 "DocumentStyleSheetCollection.h", | 134 "DocumentStyleSheetCollection.h", |
131 "DocumentStyleSheetCollector.cpp", | 135 "DocumentStyleSheetCollector.cpp", |
132 "DocumentStyleSheetCollector.h", | 136 "DocumentStyleSheetCollector.h", |
133 "DocumentTiming.cpp", | 137 "DocumentTiming.cpp", |
134 "DocumentTiming.h", | 138 "DocumentTiming.h", |
135 "DocumentType.cpp", | 139 "DocumentType.cpp", |
136 "DocumentType.h", | 140 "DocumentType.h", |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 "shadow/SlotAssignment.h", | 455 "shadow/SlotAssignment.h", |
452 "shadow/SlotScopedTraversal.cpp", | 456 "shadow/SlotScopedTraversal.cpp", |
453 "shadow/SlotScopedTraversal.h", | 457 "shadow/SlotScopedTraversal.h", |
454 ] | 458 ] |
455 | 459 |
456 configs += [ | 460 configs += [ |
457 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 461 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
458 "//build/config/compiler:no_size_t_to_int_warning", | 462 "//build/config/compiler:no_size_t_to_int_warning", |
459 ] | 463 ] |
460 } | 464 } |
OLD | NEW |