| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 "line/LineBreaker.h", | 316 "line/LineBreaker.h", |
| 317 "line/LineInfo.h", | 317 "line/LineInfo.h", |
| 318 "line/LineLayoutState.h", | 318 "line/LineLayoutState.h", |
| 319 "line/LineWidth.cpp", | 319 "line/LineWidth.cpp", |
| 320 "line/LineWidth.h", | 320 "line/LineWidth.h", |
| 321 "line/RootInlineBox.cpp", | 321 "line/RootInlineBox.cpp", |
| 322 "line/RootInlineBox.h", | 322 "line/RootInlineBox.h", |
| 323 "line/TrailingObjects.cpp", | 323 "line/TrailingObjects.cpp", |
| 324 "line/TrailingObjects.h", | 324 "line/TrailingObjects.h", |
| 325 "line/WordMeasurement.h", | 325 "line/WordMeasurement.h", |
| 326 "ng/geometry/ng_border_edges.cc", |
| 327 "ng/geometry/ng_border_edges.h", |
| 326 "ng/geometry/ng_box_strut.cc", | 328 "ng/geometry/ng_box_strut.cc", |
| 327 "ng/geometry/ng_box_strut.h", | 329 "ng/geometry/ng_box_strut.h", |
| 328 "ng/geometry/ng_edge.h", | 330 "ng/geometry/ng_edge.h", |
| 329 "ng/geometry/ng_logical_offset.cc", | 331 "ng/geometry/ng_logical_offset.cc", |
| 330 "ng/geometry/ng_logical_offset.h", | 332 "ng/geometry/ng_logical_offset.h", |
| 331 "ng/geometry/ng_logical_rect.cc", | 333 "ng/geometry/ng_logical_rect.cc", |
| 332 "ng/geometry/ng_logical_rect.h", | 334 "ng/geometry/ng_logical_rect.h", |
| 333 "ng/geometry/ng_logical_size.cc", | 335 "ng/geometry/ng_logical_size.cc", |
| 334 "ng/geometry/ng_logical_size.h", | 336 "ng/geometry/ng_logical_size.h", |
| 335 "ng/geometry/ng_margin_strut.cc", | 337 "ng/geometry/ng_margin_strut.cc", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 "LayoutThemeAndroid.cpp", | 479 "LayoutThemeAndroid.cpp", |
| 478 "LayoutThemeAndroid.h", | 480 "LayoutThemeAndroid.h", |
| 479 ] | 481 ] |
| 480 } | 482 } |
| 481 | 483 |
| 482 configs += [ | 484 configs += [ |
| 483 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 485 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 484 "//build/config/compiler:no_size_t_to_int_warning", | 486 "//build/config/compiler:no_size_t_to_int_warning", |
| 485 ] | 487 ] |
| 486 } | 488 } |
| OLD | NEW |