Chromium Code Reviews| 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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 318 "line/LineBreaker.h", | 318 "line/LineBreaker.h", |
| 319 "line/LineInfo.h", | 319 "line/LineInfo.h", |
| 320 "line/LineLayoutState.h", | 320 "line/LineLayoutState.h", |
| 321 "line/LineWidth.cpp", | 321 "line/LineWidth.cpp", |
| 322 "line/LineWidth.h", | 322 "line/LineWidth.h", |
| 323 "line/RootInlineBox.cpp", | 323 "line/RootInlineBox.cpp", |
| 324 "line/RootInlineBox.h", | 324 "line/RootInlineBox.h", |
| 325 "line/TrailingObjects.cpp", | 325 "line/TrailingObjects.cpp", |
| 326 "line/TrailingObjects.h", | 326 "line/TrailingObjects.h", |
| 327 "line/WordMeasurement.h", | 327 "line/WordMeasurement.h", |
| 328 "ng/api/empty_offset_mapping_builder.h", | |
|
kojii
2017/06/28 07:45:28
Please put this into "inline" directory.
| |
| 328 "ng/geometry/ng_border_edges.cc", | 329 "ng/geometry/ng_border_edges.cc", |
| 329 "ng/geometry/ng_border_edges.h", | 330 "ng/geometry/ng_border_edges.h", |
| 330 "ng/geometry/ng_box_strut.cc", | 331 "ng/geometry/ng_box_strut.cc", |
| 331 "ng/geometry/ng_box_strut.h", | 332 "ng/geometry/ng_box_strut.h", |
| 332 "ng/geometry/ng_edge.h", | 333 "ng/geometry/ng_edge.h", |
| 333 "ng/geometry/ng_logical_offset.cc", | 334 "ng/geometry/ng_logical_offset.cc", |
| 334 "ng/geometry/ng_logical_offset.h", | 335 "ng/geometry/ng_logical_offset.h", |
| 335 "ng/geometry/ng_logical_rect.cc", | 336 "ng/geometry/ng_logical_rect.cc", |
| 336 "ng/geometry/ng_logical_rect.h", | 337 "ng/geometry/ng_logical_rect.h", |
| 337 "ng/geometry/ng_logical_size.cc", | 338 "ng/geometry/ng_logical_size.cc", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 484 "LayoutThemeAndroid.h", | 485 "LayoutThemeAndroid.h", |
| 485 "WebFontRenderingAndroid.cpp", | 486 "WebFontRenderingAndroid.cpp", |
| 486 ] | 487 ] |
| 487 } | 488 } |
| 488 | 489 |
| 489 configs += [ | 490 configs += [ |
| 490 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 491 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 491 "//build/config/compiler:no_size_t_to_int_warning", | 492 "//build/config/compiler:no_size_t_to_int_warning", |
| 492 ] | 493 ] |
| 493 } | 494 } |
| OLD | NEW |