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