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 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 "ng/ng_layout_opportunity_iterator.h", | 409 "ng/ng_layout_opportunity_iterator.h", |
410 "ng/ng_layout_opportunity_tree_node.cc", | 410 "ng/ng_layout_opportunity_tree_node.cc", |
411 "ng/ng_layout_opportunity_tree_node.h", | 411 "ng/ng_layout_opportunity_tree_node.h", |
412 "ng/ng_layout_result.cc", | 412 "ng/ng_layout_result.cc", |
413 "ng/ng_layout_result.h", | 413 "ng/ng_layout_result.h", |
414 "ng/ng_length_utils.cc", | 414 "ng/ng_length_utils.cc", |
415 "ng/ng_length_utils.h", | 415 "ng/ng_length_utils.h", |
416 "ng/ng_macros.h", | 416 "ng/ng_macros.h", |
417 "ng/ng_min_max_content_size.cc", | 417 "ng/ng_min_max_content_size.cc", |
418 "ng/ng_min_max_content_size.h", | 418 "ng/ng_min_max_content_size.h", |
| 419 "ng/ng_multi_column_layout_algorithm.cc", |
| 420 "ng/ng_multi_column_layout_algorithm.h", |
419 "ng/ng_out_of_flow_layout_part.cc", | 421 "ng/ng_out_of_flow_layout_part.cc", |
420 "ng/ng_out_of_flow_layout_part.h", | 422 "ng/ng_out_of_flow_layout_part.h", |
421 "ng/ng_physical_box_fragment.cc", | 423 "ng/ng_physical_box_fragment.cc", |
422 "ng/ng_physical_box_fragment.h", | 424 "ng/ng_physical_box_fragment.h", |
423 "ng/ng_physical_fragment.cc", | 425 "ng/ng_physical_fragment.cc", |
424 "ng/ng_physical_fragment.h", | 426 "ng/ng_physical_fragment.h", |
425 "ng/ng_positioned_float.h", | 427 "ng/ng_positioned_float.h", |
426 "ng/ng_relative_utils.cc", | 428 "ng/ng_relative_utils.cc", |
427 "ng/ng_relative_utils.h", | 429 "ng/ng_relative_utils.h", |
428 "ng/ng_space_utils.cc", | 430 "ng/ng_space_utils.cc", |
(...skipping 43 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 |