| 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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 "ng/geometry/ng_static_position.cc", | 343 "ng/geometry/ng_static_position.cc", |
| 344 "ng/geometry/ng_static_position.h", | 344 "ng/geometry/ng_static_position.h", |
| 345 "ng/inline/ng_bidi_paragraph.cc", | 345 "ng/inline/ng_bidi_paragraph.cc", |
| 346 "ng/inline/ng_bidi_paragraph.h", | 346 "ng/inline/ng_bidi_paragraph.h", |
| 347 "ng/inline/ng_inline_box_state.cc", | 347 "ng/inline/ng_inline_box_state.cc", |
| 348 "ng/inline/ng_inline_box_state.h", | 348 "ng/inline/ng_inline_box_state.h", |
| 349 "ng/inline/ng_inline_break_token.cc", | 349 "ng/inline/ng_inline_break_token.cc", |
| 350 "ng/inline/ng_inline_break_token.h", | 350 "ng/inline/ng_inline_break_token.h", |
| 351 "ng/inline/ng_inline_item.cc", | 351 "ng/inline/ng_inline_item.cc", |
| 352 "ng/inline/ng_inline_item.h", | 352 "ng/inline/ng_inline_item.h", |
| 353 "ng/inline/ng_inline_item_result.cc", |
| 354 "ng/inline/ng_inline_item_result.h", |
| 353 "ng/inline/ng_inline_items_builder.cc", | 355 "ng/inline/ng_inline_items_builder.cc", |
| 354 "ng/inline/ng_inline_items_builder.h", | 356 "ng/inline/ng_inline_items_builder.h", |
| 355 "ng/inline/ng_inline_layout_algorithm.cc", | 357 "ng/inline/ng_inline_layout_algorithm.cc", |
| 356 "ng/inline/ng_inline_layout_algorithm.h", | 358 "ng/inline/ng_inline_layout_algorithm.h", |
| 357 "ng/inline/ng_inline_node.cc", | 359 "ng/inline/ng_inline_node.cc", |
| 358 "ng/inline/ng_inline_node.h", | 360 "ng/inline/ng_inline_node.h", |
| 359 "ng/inline/ng_inline_node_data.h", | 361 "ng/inline/ng_inline_node_data.h", |
| 360 "ng/inline/ng_line_box_fragment.cc", | 362 "ng/inline/ng_line_box_fragment.cc", |
| 361 "ng/inline/ng_line_box_fragment.h", | 363 "ng/inline/ng_line_box_fragment.h", |
| 362 "ng/inline/ng_line_box_fragment_builder.cc", | 364 "ng/inline/ng_line_box_fragment_builder.cc", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 "LayoutThemeAndroid.cpp", | 474 "LayoutThemeAndroid.cpp", |
| 473 "LayoutThemeAndroid.h", | 475 "LayoutThemeAndroid.h", |
| 474 ] | 476 ] |
| 475 } | 477 } |
| 476 | 478 |
| 477 configs += [ | 479 configs += [ |
| 478 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 480 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 479 "//build/config/compiler:no_size_t_to_int_warning", | 481 "//build/config/compiler:no_size_t_to_int_warning", |
| 480 ] | 482 ] |
| 481 } | 483 } |
| OLD | NEW |