| 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 "BidiRun.h", | 11 "BidiRun.h", |
| 12 "BidiRunForLine.cpp", | 12 "BidiRunForLine.cpp", |
| 13 "BidiRunForLine.h", | 13 "BidiRunForLine.h", |
| 14 "ClipRect.cpp", | |
| 15 "ClipRect.h", | |
| 16 "ClipRects.h", | |
| 17 "ClipRectsCache.h", | |
| 18 "ColumnBalancer.cpp", | 14 "ColumnBalancer.cpp", |
| 19 "ColumnBalancer.h", | 15 "ColumnBalancer.h", |
| 20 "CounterNode.cpp", | 16 "CounterNode.cpp", |
| 21 "CounterNode.h", | 17 "CounterNode.h", |
| 22 "DepthOrderedLayoutObjectList.cpp", | 18 "DepthOrderedLayoutObjectList.cpp", |
| 23 "DepthOrderedLayoutObjectList.h", | 19 "DepthOrderedLayoutObjectList.h", |
| 24 "FlexibleBoxAlgorithm.cpp", | 20 "FlexibleBoxAlgorithm.cpp", |
| 25 "FlexibleBoxAlgorithm.h", | 21 "FlexibleBoxAlgorithm.h", |
| 26 "FloatingObjects.cpp", | 22 "FloatingObjects.cpp", |
| 27 "FloatingObjects.h", | 23 "FloatingObjects.h", |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "LayoutThemeAndroid.cpp", | 375 "LayoutThemeAndroid.cpp", |
| 380 "LayoutThemeAndroid.h", | 376 "LayoutThemeAndroid.h", |
| 381 ] | 377 ] |
| 382 } | 378 } |
| 383 | 379 |
| 384 configs += [ | 380 configs += [ |
| 385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 381 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 386 "//build/config/compiler:no_size_t_to_int_warning", | 382 "//build/config/compiler:no_size_t_to_int_warning", |
| 387 ] | 383 ] |
| 388 } | 384 } |
| OLD | NEW |