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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 "ng/geometry/ng_physical_location.h", | 340 "ng/geometry/ng_physical_location.h", |
341 "ng/geometry/ng_physical_offset.cc", | 341 "ng/geometry/ng_physical_offset.cc", |
342 "ng/geometry/ng_physical_offset.h", | 342 "ng/geometry/ng_physical_offset.h", |
343 "ng/geometry/ng_physical_rect.cc", | 343 "ng/geometry/ng_physical_rect.cc", |
344 "ng/geometry/ng_physical_rect.h", | 344 "ng/geometry/ng_physical_rect.h", |
345 "ng/geometry/ng_physical_size.cc", | 345 "ng/geometry/ng_physical_size.cc", |
346 "ng/geometry/ng_physical_size.h", | 346 "ng/geometry/ng_physical_size.h", |
347 "ng/geometry/ng_static_position.cc", | 347 "ng/geometry/ng_static_position.cc", |
348 "ng/geometry/ng_static_position.h", | 348 "ng/geometry/ng_static_position.h", |
349 "ng/inline/empty_offset_mapping_builder.h", | 349 "ng/inline/empty_offset_mapping_builder.h", |
| 350 "ng/inline/ng_baseline.cc", |
| 351 "ng/inline/ng_baseline.h", |
350 "ng/inline/ng_bidi_paragraph.cc", | 352 "ng/inline/ng_bidi_paragraph.cc", |
351 "ng/inline/ng_bidi_paragraph.h", | 353 "ng/inline/ng_bidi_paragraph.h", |
352 "ng/inline/ng_inline_box_state.cc", | 354 "ng/inline/ng_inline_box_state.cc", |
353 "ng/inline/ng_inline_box_state.h", | 355 "ng/inline/ng_inline_box_state.h", |
354 "ng/inline/ng_inline_break_token.cc", | 356 "ng/inline/ng_inline_break_token.cc", |
355 "ng/inline/ng_inline_break_token.h", | 357 "ng/inline/ng_inline_break_token.h", |
356 "ng/inline/ng_inline_item.cc", | 358 "ng/inline/ng_inline_item.cc", |
357 "ng/inline/ng_inline_item.h", | 359 "ng/inline/ng_inline_item.h", |
358 "ng/inline/ng_inline_item_result.cc", | 360 "ng/inline/ng_inline_item_result.cc", |
359 "ng/inline/ng_inline_item_result.h", | 361 "ng/inline/ng_inline_item_result.h", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
486 "LayoutThemeAndroid.h", | 488 "LayoutThemeAndroid.h", |
487 "WebFontRenderingAndroid.cpp", | 489 "WebFontRenderingAndroid.cpp", |
488 ] | 490 ] |
489 } | 491 } |
490 | 492 |
491 configs += [ | 493 configs += [ |
492 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 494 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
493 "//build/config/compiler:no_size_t_to_int_warning", | 495 "//build/config/compiler:no_size_t_to_int_warning", |
494 ] | 496 ] |
495 } | 497 } |
OLD | NEW |