| 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 "IdTargetObserver.cpp", | 148 "IdTargetObserver.cpp", |
| 149 "IdTargetObserver.h", | 149 "IdTargetObserver.h", |
| 150 "IdTargetObserverRegistry.cpp", | 150 "IdTargetObserverRegistry.cpp", |
| 151 "IdTargetObserverRegistry.h", | 151 "IdTargetObserverRegistry.h", |
| 152 "IdleDeadline.cpp", | 152 "IdleDeadline.cpp", |
| 153 "IdleDeadline.h", | 153 "IdleDeadline.h", |
| 154 "IdleRequestCallback.h", | 154 "IdleRequestCallback.h", |
| 155 "IgnoreDestructiveWriteCountIncrementer.h", | 155 "IgnoreDestructiveWriteCountIncrementer.h", |
| 156 "IncrementLoadEventDelayCount.cpp", | 156 "IncrementLoadEventDelayCount.cpp", |
| 157 "IncrementLoadEventDelayCount.h", | 157 "IncrementLoadEventDelayCount.h", |
| 158 "IntersectionGeometry.cpp", |
| 159 "IntersectionGeometry.h", |
| 158 "IntersectionObservation.cpp", | 160 "IntersectionObservation.cpp", |
| 159 "IntersectionObservation.h", | 161 "IntersectionObservation.h", |
| 160 "IntersectionObserver.cpp", | 162 "IntersectionObserver.cpp", |
| 161 "IntersectionObserver.h", | 163 "IntersectionObserver.h", |
| 162 "IntersectionObserverController.cpp", | 164 "IntersectionObserverController.cpp", |
| 163 "IntersectionObserverController.h", | 165 "IntersectionObserverController.h", |
| 164 "IntersectionObserverEntry.cpp", | 166 "IntersectionObserverEntry.cpp", |
| 165 "IntersectionObserverEntry.h", | 167 "IntersectionObserverEntry.h", |
| 166 "Iterator.h", | 168 "Iterator.h", |
| 167 "LayoutTreeBuilder.cpp", | 169 "LayoutTreeBuilder.cpp", |
| (...skipping 224 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 |