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