| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "LayoutTreeBuilder.h", | 172 "LayoutTreeBuilder.h", |
| 173 "LayoutTreeBuilderTraversal.cpp", | 173 "LayoutTreeBuilderTraversal.cpp", |
| 174 "LayoutTreeBuilderTraversal.h", | 174 "LayoutTreeBuilderTraversal.h", |
| 175 "LiveNodeList.cpp", | 175 "LiveNodeList.cpp", |
| 176 "LiveNodeList.h", | 176 "LiveNodeList.h", |
| 177 "LiveNodeListBase.cpp", | 177 "LiveNodeListBase.cpp", |
| 178 "LiveNodeListBase.h", | 178 "LiveNodeListBase.h", |
| 179 "MessageChannel.cpp", | 179 "MessageChannel.cpp", |
| 180 "MessageChannel.h", | 180 "MessageChannel.h", |
| 181 "MessagePort.cpp", | 181 "MessagePort.cpp", |
| 182 "Modulator.cpp", |
| 183 "Modulator.h", |
| 182 "MutationCallback.h", | 184 "MutationCallback.h", |
| 183 "MutationObserver.cpp", | 185 "MutationObserver.cpp", |
| 184 "MutationObserver.h", | 186 "MutationObserver.h", |
| 185 "MutationObserverInterestGroup.cpp", | 187 "MutationObserverInterestGroup.cpp", |
| 186 "MutationObserverInterestGroup.h", | 188 "MutationObserverInterestGroup.h", |
| 187 "MutationObserverRegistration.cpp", | 189 "MutationObserverRegistration.cpp", |
| 188 "MutationObserverRegistration.h", | 190 "MutationObserverRegistration.h", |
| 189 "MutationRecord.cpp", | 191 "MutationRecord.cpp", |
| 190 "MutationRecord.h", | 192 "MutationRecord.h", |
| 191 "NameNodeList.cpp", | 193 "NameNodeList.cpp", |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "shadow/SlotAssignment.h", | 394 "shadow/SlotAssignment.h", |
| 393 "shadow/SlotScopedTraversal.cpp", | 395 "shadow/SlotScopedTraversal.cpp", |
| 394 "shadow/SlotScopedTraversal.h", | 396 "shadow/SlotScopedTraversal.h", |
| 395 ] | 397 ] |
| 396 | 398 |
| 397 configs += [ | 399 configs += [ |
| 398 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 400 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 399 "//build/config/compiler:no_size_t_to_int_warning", | 401 "//build/config/compiler:no_size_t_to_int_warning", |
| 400 ] | 402 ] |
| 401 } | 403 } |
| OLD | NEW |