| 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("layout") { | 7 blink_core_sources("layout") { |
| 8 split_count = 5 | 8 split_count = 5 |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "PaintInvalidationState.cpp", | 215 "PaintInvalidationState.cpp", |
| 216 "PaintInvalidationState.h", | 216 "PaintInvalidationState.h", |
| 217 "PointerEventsHitRules.cpp", | 217 "PointerEventsHitRules.cpp", |
| 218 "PointerEventsHitRules.h", | 218 "PointerEventsHitRules.h", |
| 219 "ScrollAlignment.cpp", | 219 "ScrollAlignment.cpp", |
| 220 "ScrollAlignment.h", | 220 "ScrollAlignment.h", |
| 221 "ScrollAnchor.cpp", | 221 "ScrollAnchor.cpp", |
| 222 "ScrollAnchor.h", | 222 "ScrollAnchor.h", |
| 223 "SubtreeLayoutScope.cpp", | 223 "SubtreeLayoutScope.cpp", |
| 224 "SubtreeLayoutScope.h", | 224 "SubtreeLayoutScope.h", |
| 225 "TableGridCell.cpp", |
| 226 "TableGridCell.h", |
| 225 "TableLayoutAlgorithm.h", | 227 "TableLayoutAlgorithm.h", |
| 226 "TableLayoutAlgorithmAuto.cpp", | 228 "TableLayoutAlgorithmAuto.cpp", |
| 227 "TableLayoutAlgorithmAuto.h", | 229 "TableLayoutAlgorithmAuto.h", |
| 228 "TableLayoutAlgorithmFixed.cpp", | 230 "TableLayoutAlgorithmFixed.cpp", |
| 229 "TableLayoutAlgorithmFixed.h", | 231 "TableLayoutAlgorithmFixed.h", |
| 230 "TextAutosizer.cpp", | 232 "TextAutosizer.cpp", |
| 231 "TextAutosizer.h", | 233 "TextAutosizer.h", |
| 232 "TextRunConstructor.cpp", | 234 "TextRunConstructor.cpp", |
| 233 "TextRunConstructor.h", | 235 "TextRunConstructor.h", |
| 234 "TracedLayoutObject.cpp", | 236 "TracedLayoutObject.cpp", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 "LayoutThemeAndroid.cpp", | 474 "LayoutThemeAndroid.cpp", |
| 473 "LayoutThemeAndroid.h", | 475 "LayoutThemeAndroid.h", |
| 474 ] | 476 ] |
| 475 } | 477 } |
| 476 | 478 |
| 477 configs += [ | 479 configs += [ |
| 478 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 480 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 479 "//build/config/compiler:no_size_t_to_int_warning", | 481 "//build/config/compiler:no_size_t_to_int_warning", |
| 480 ] | 482 ] |
| 481 } | 483 } |
| OLD | NEW |