| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 "ng/ng_layout_opportunity_tree_node.h", | 421 "ng/ng_layout_opportunity_tree_node.h", |
| 422 "ng/ng_layout_result.cc", | 422 "ng/ng_layout_result.cc", |
| 423 "ng/ng_layout_result.h", | 423 "ng/ng_layout_result.h", |
| 424 "ng/ng_length_utils.cc", | 424 "ng/ng_length_utils.cc", |
| 425 "ng/ng_length_utils.h", | 425 "ng/ng_length_utils.h", |
| 426 "ng/ng_macros.h", | 426 "ng/ng_macros.h", |
| 427 "ng/ng_min_max_content_size.cc", | 427 "ng/ng_min_max_content_size.cc", |
| 428 "ng/ng_min_max_content_size.h", | 428 "ng/ng_min_max_content_size.h", |
| 429 "ng/ng_out_of_flow_layout_part.cc", | 429 "ng/ng_out_of_flow_layout_part.cc", |
| 430 "ng/ng_out_of_flow_layout_part.h", | 430 "ng/ng_out_of_flow_layout_part.h", |
| 431 "ng/ng_out_of_flow_positioned_descendant.h", |
| 431 "ng/ng_physical_box_fragment.cc", | 432 "ng/ng_physical_box_fragment.cc", |
| 432 "ng/ng_physical_box_fragment.h", | 433 "ng/ng_physical_box_fragment.h", |
| 433 "ng/ng_physical_fragment.cc", | 434 "ng/ng_physical_fragment.cc", |
| 434 "ng/ng_physical_fragment.h", | 435 "ng/ng_physical_fragment.h", |
| 435 "ng/ng_positioned_float.h", | 436 "ng/ng_positioned_float.h", |
| 436 "ng/ng_relative_utils.cc", | 437 "ng/ng_relative_utils.cc", |
| 437 "ng/ng_relative_utils.h", | 438 "ng/ng_relative_utils.h", |
| 438 "ng/ng_space_utils.cc", | 439 "ng/ng_space_utils.cc", |
| 439 "ng/ng_space_utils.h", | 440 "ng/ng_space_utils.h", |
| 440 "ng/ng_unpositioned_float.cc", | 441 "ng/ng_unpositioned_float.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 "LayoutThemeAndroid.h", | 488 "LayoutThemeAndroid.h", |
| 488 "WebFontRenderingAndroid.cpp", | 489 "WebFontRenderingAndroid.cpp", |
| 489 ] | 490 ] |
| 490 } | 491 } |
| 491 | 492 |
| 492 configs += [ | 493 configs += [ |
| 493 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 494 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 494 "//build/config/compiler:no_size_t_to_int_warning", | 495 "//build/config/compiler:no_size_t_to_int_warning", |
| 495 ] | 496 ] |
| 496 } | 497 } |
| OLD | NEW |