| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 "StaticRange.h", | 272 "StaticRange.h", |
| 273 "StringCallback.h", | 273 "StringCallback.h", |
| 274 "StyleChangeReason.cpp", | 274 "StyleChangeReason.cpp", |
| 275 "StyleChangeReason.h", | 275 "StyleChangeReason.h", |
| 276 "StyleElement.cpp", | 276 "StyleElement.cpp", |
| 277 "StyleElement.h", | 277 "StyleElement.h", |
| 278 "StyleEngine.cpp", | 278 "StyleEngine.cpp", |
| 279 "StyleEngine.h", | 279 "StyleEngine.h", |
| 280 "StyleEngineContext.cpp", | 280 "StyleEngineContext.cpp", |
| 281 "StyleEngineContext.h", | 281 "StyleEngineContext.h", |
| 282 "StyleReattachData.h", | |
| 283 "StyleSheetCandidate.cpp", | 282 "StyleSheetCandidate.cpp", |
| 284 "StyleSheetCandidate.h", | 283 "StyleSheetCandidate.h", |
| 285 "StyleSheetCollection.cpp", | 284 "StyleSheetCollection.cpp", |
| 286 "StyleSheetCollection.h", | 285 "StyleSheetCollection.h", |
| 287 "SuspendableObject.cpp", | 286 "SuspendableObject.cpp", |
| 288 "SynchronousMutationNotifier.cpp", | 287 "SynchronousMutationNotifier.cpp", |
| 289 "SynchronousMutationNotifier.h", | 288 "SynchronousMutationNotifier.h", |
| 290 "SynchronousMutationObserver.cpp", | 289 "SynchronousMutationObserver.cpp", |
| 291 "SynchronousMutationObserver.h", | 290 "SynchronousMutationObserver.h", |
| 292 "TagCollection.cpp", | 291 "TagCollection.cpp", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 "shadow/SlotAssignment.h", | 410 "shadow/SlotAssignment.h", |
| 412 "shadow/SlotScopedTraversal.cpp", | 411 "shadow/SlotScopedTraversal.cpp", |
| 413 "shadow/SlotScopedTraversal.h", | 412 "shadow/SlotScopedTraversal.h", |
| 414 ] | 413 ] |
| 415 | 414 |
| 416 configs += [ | 415 configs += [ |
| 417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 416 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 418 "//build/config/compiler:no_size_t_to_int_warning", | 417 "//build/config/compiler:no_size_t_to_int_warning", |
| 419 ] | 418 ] |
| 420 } | 419 } |
| OLD | NEW |