| 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 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 "ng/inline/ng_inline_node.h", | 367 "ng/inline/ng_inline_node.h", |
| 368 "ng/inline/ng_inline_node_data.h", | 368 "ng/inline/ng_inline_node_data.h", |
| 369 "ng/inline/ng_line_box_fragment.cc", | 369 "ng/inline/ng_line_box_fragment.cc", |
| 370 "ng/inline/ng_line_box_fragment.h", | 370 "ng/inline/ng_line_box_fragment.h", |
| 371 "ng/inline/ng_line_box_fragment_builder.cc", | 371 "ng/inline/ng_line_box_fragment_builder.cc", |
| 372 "ng/inline/ng_line_box_fragment_builder.h", | 372 "ng/inline/ng_line_box_fragment_builder.h", |
| 373 "ng/inline/ng_line_breaker.cc", | 373 "ng/inline/ng_line_breaker.cc", |
| 374 "ng/inline/ng_line_breaker.h", | 374 "ng/inline/ng_line_breaker.h", |
| 375 "ng/inline/ng_line_height_metrics.cc", | 375 "ng/inline/ng_line_height_metrics.cc", |
| 376 "ng/inline/ng_line_height_metrics.h", | 376 "ng/inline/ng_line_height_metrics.h", |
| 377 "ng/inline/ng_offset_mapping_builder.cc", |
| 378 "ng/inline/ng_offset_mapping_builder.h", |
| 377 "ng/inline/ng_physical_line_box_fragment.cc", | 379 "ng/inline/ng_physical_line_box_fragment.cc", |
| 378 "ng/inline/ng_physical_line_box_fragment.h", | 380 "ng/inline/ng_physical_line_box_fragment.h", |
| 379 "ng/inline/ng_physical_text_fragment.h", | 381 "ng/inline/ng_physical_text_fragment.h", |
| 380 "ng/inline/ng_text_fragment.cc", | 382 "ng/inline/ng_text_fragment.cc", |
| 381 "ng/inline/ng_text_fragment.h", | 383 "ng/inline/ng_text_fragment.h", |
| 382 "ng/inline/ng_text_fragment_builder.cc", | 384 "ng/inline/ng_text_fragment_builder.cc", |
| 383 "ng/inline/ng_text_fragment_builder.h", | 385 "ng/inline/ng_text_fragment_builder.h", |
| 384 "ng/layout_ng_block_flow.cc", | 386 "ng/layout_ng_block_flow.cc", |
| 385 "ng/layout_ng_block_flow.h", | 387 "ng/layout_ng_block_flow.h", |
| 386 "ng/ng_absolute_utils.cc", | 388 "ng/ng_absolute_utils.cc", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 "LayoutThemeAndroid.h", | 487 "LayoutThemeAndroid.h", |
| 486 "WebFontRenderingAndroid.cpp", | 488 "WebFontRenderingAndroid.cpp", |
| 487 ] | 489 ] |
| 488 } | 490 } |
| 489 | 491 |
| 490 configs += [ | 492 configs += [ |
| 491 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 493 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 492 "//build/config/compiler:no_size_t_to_int_warning", | 494 "//build/config/compiler:no_size_t_to_int_warning", |
| 493 ] | 495 ] |
| 494 } | 496 } |
| OLD | NEW |