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 = [ |
11 "BackgroundBleedAvoidance.h", | 11 "BackgroundBleedAvoidance.h", |
12 "BaselineAlignment.cpp", | 12 "BaselineAlignment.cpp", |
13 "BaselineAlignment.h", | 13 "BaselineAlignment.h", |
14 "BidiRun.h", | 14 "BidiRun.h", |
15 "BidiRunForLine.cpp", | 15 "BidiRunForLine.cpp", |
16 "BidiRunForLine.h", | 16 "BidiRunForLine.h", |
| 17 "CollapsedBorderValue.h", |
17 "ColumnBalancer.cpp", | 18 "ColumnBalancer.cpp", |
18 "ColumnBalancer.h", | 19 "ColumnBalancer.h", |
19 "ContentChangeType.h", | 20 "ContentChangeType.h", |
20 "CounterNode.cpp", | 21 "CounterNode.cpp", |
21 "CounterNode.h", | 22 "CounterNode.h", |
22 "DepthOrderedLayoutObjectList.cpp", | 23 "DepthOrderedLayoutObjectList.cpp", |
23 "DepthOrderedLayoutObjectList.h", | 24 "DepthOrderedLayoutObjectList.h", |
24 "FlexibleBoxAlgorithm.cpp", | 25 "FlexibleBoxAlgorithm.cpp", |
25 "FlexibleBoxAlgorithm.h", | 26 "FlexibleBoxAlgorithm.h", |
26 "FloatingObjects.cpp", | 27 "FloatingObjects.cpp", |
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
469 "LayoutThemeAndroid.cpp", | 470 "LayoutThemeAndroid.cpp", |
470 "LayoutThemeAndroid.h", | 471 "LayoutThemeAndroid.h", |
471 ] | 472 ] |
472 } | 473 } |
473 | 474 |
474 configs += [ | 475 configs += [ |
475 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 476 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
476 "//build/config/compiler:no_size_t_to_int_warning", | 477 "//build/config/compiler:no_size_t_to_int_warning", |
477 ] | 478 ] |
478 } | 479 } |
OLD | NEW |