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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 "ng/ng_layout_opportunity_iterator.cc", | 341 "ng/ng_layout_opportunity_iterator.cc", |
342 "ng/ng_layout_opportunity_iterator.h", | 342 "ng/ng_layout_opportunity_iterator.h", |
343 "ng/ng_layout_opportunity_tree_node.cc", | 343 "ng/ng_layout_opportunity_tree_node.cc", |
344 "ng/ng_layout_opportunity_tree_node.h", | 344 "ng/ng_layout_opportunity_tree_node.h", |
345 "ng/ng_layout_result.cc", | 345 "ng/ng_layout_result.cc", |
346 "ng/ng_layout_result.h", | 346 "ng/ng_layout_result.h", |
347 "ng/ng_length_utils.cc", | 347 "ng/ng_length_utils.cc", |
348 "ng/ng_length_utils.h", | 348 "ng/ng_length_utils.h", |
349 "ng/ng_line_builder.cc", | 349 "ng/ng_line_builder.cc", |
350 "ng/ng_line_builder.h", | 350 "ng/ng_line_builder.h", |
| 351 "ng/ng_line_height_metrics.cc", |
| 352 "ng/ng_line_height_metrics.h", |
| 353 "ng/ng_linebox_fragment.cc", |
| 354 "ng/ng_linebox_fragment.h", |
| 355 "ng/ng_linebox_fragment_builder.cc", |
| 356 "ng/ng_linebox_fragment_builder.h", |
351 "ng/ng_macros.h", | 357 "ng/ng_macros.h", |
352 "ng/ng_min_max_content_size.cc", | 358 "ng/ng_min_max_content_size.cc", |
353 "ng/ng_min_max_content_size.h", | 359 "ng/ng_min_max_content_size.h", |
354 "ng/ng_out_of_flow_layout_part.cc", | 360 "ng/ng_out_of_flow_layout_part.cc", |
355 "ng/ng_out_of_flow_layout_part.h", | 361 "ng/ng_out_of_flow_layout_part.h", |
356 "ng/ng_physical_box_fragment.cc", | 362 "ng/ng_physical_box_fragment.cc", |
357 "ng/ng_physical_box_fragment.h", | 363 "ng/ng_physical_box_fragment.h", |
358 "ng/ng_physical_fragment.cc", | 364 "ng/ng_physical_fragment.cc", |
359 "ng/ng_physical_fragment.h", | 365 "ng/ng_physical_fragment.h", |
| 366 "ng/ng_physical_linebox_fragment.cc", |
| 367 "ng/ng_physical_linebox_fragment.h", |
360 "ng/ng_physical_text_fragment.h", | 368 "ng/ng_physical_text_fragment.h", |
361 "ng/ng_relative_utils.cc", | 369 "ng/ng_relative_utils.cc", |
362 "ng/ng_relative_utils.h", | 370 "ng/ng_relative_utils.h", |
363 "ng/ng_space_utils.cc", | 371 "ng/ng_space_utils.cc", |
364 "ng/ng_space_utils.h", | 372 "ng/ng_space_utils.h", |
365 "ng/ng_text_fragment.cc", | 373 "ng/ng_text_fragment.cc", |
366 "ng/ng_text_fragment.h", | 374 "ng/ng_text_fragment.h", |
| 375 "ng/ng_text_fragment_builder.cc", |
| 376 "ng/ng_text_fragment_builder.h", |
367 "ng/ng_text_layout_algorithm.cc", | 377 "ng/ng_text_layout_algorithm.cc", |
368 "ng/ng_text_layout_algorithm.h", | 378 "ng/ng_text_layout_algorithm.h", |
369 "ng/ng_writing_mode.cc", | 379 "ng/ng_writing_mode.cc", |
370 "ng/ng_writing_mode.h", | 380 "ng/ng_writing_mode.h", |
371 "shapes/BoxShape.cpp", | 381 "shapes/BoxShape.cpp", |
372 "shapes/BoxShape.h", | 382 "shapes/BoxShape.h", |
373 "shapes/PolygonShape.cpp", | 383 "shapes/PolygonShape.cpp", |
374 "shapes/PolygonShape.h", | 384 "shapes/PolygonShape.h", |
375 "shapes/RasterShape.cpp", | 385 "shapes/RasterShape.cpp", |
376 "shapes/RasterShape.h", | 386 "shapes/RasterShape.h", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 "LayoutThemeAndroid.cpp", | 421 "LayoutThemeAndroid.cpp", |
412 "LayoutThemeAndroid.h", | 422 "LayoutThemeAndroid.h", |
413 ] | 423 ] |
414 } | 424 } |
415 | 425 |
416 configs += [ | 426 configs += [ |
417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 427 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
418 "//build/config/compiler:no_size_t_to_int_warning", | 428 "//build/config/compiler:no_size_t_to_int_warning", |
419 ] | 429 ] |
420 } | 430 } |
OLD | NEW |