| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "ng/ng_inline_node.cc", | 305 "ng/ng_inline_node.cc", |
| 306 "ng/ng_inline_node.h", | 306 "ng/ng_inline_node.h", |
| 307 "ng/ng_layout_algorithm.h", | 307 "ng/ng_layout_algorithm.h", |
| 308 "ng/ng_layout_inline_items_builder.cc", | 308 "ng/ng_layout_inline_items_builder.cc", |
| 309 "ng/ng_layout_inline_items_builder.h", | 309 "ng/ng_layout_inline_items_builder.h", |
| 310 "ng/ng_layout_input_node.h", | 310 "ng/ng_layout_input_node.h", |
| 311 "ng/ng_layout_opportunity_iterator.cc", | 311 "ng/ng_layout_opportunity_iterator.cc", |
| 312 "ng/ng_layout_opportunity_iterator.h", | 312 "ng/ng_layout_opportunity_iterator.h", |
| 313 "ng/ng_layout_opportunity_tree_node.cc", | 313 "ng/ng_layout_opportunity_tree_node.cc", |
| 314 "ng/ng_layout_opportunity_tree_node.h", | 314 "ng/ng_layout_opportunity_tree_node.h", |
| 315 "ng/ng_layout_result.cc", |
| 316 "ng/ng_layout_result.h", |
| 315 "ng/ng_length_utils.cc", | 317 "ng/ng_length_utils.cc", |
| 316 "ng/ng_length_utils.h", | 318 "ng/ng_length_utils.h", |
| 317 "ng/ng_line_builder.cc", | 319 "ng/ng_line_builder.cc", |
| 318 "ng/ng_line_builder.h", | 320 "ng/ng_line_builder.h", |
| 319 "ng/ng_macros.h", | 321 "ng/ng_macros.h", |
| 320 "ng/ng_out_of_flow_layout_part.cc", | 322 "ng/ng_out_of_flow_layout_part.cc", |
| 321 "ng/ng_out_of_flow_layout_part.h", | 323 "ng/ng_out_of_flow_layout_part.h", |
| 322 "ng/ng_physical_box_fragment.cc", | 324 "ng/ng_physical_box_fragment.cc", |
| 323 "ng/ng_physical_box_fragment.h", | 325 "ng/ng_physical_box_fragment.h", |
| 324 "ng/ng_physical_fragment.cc", | 326 "ng/ng_physical_fragment.cc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "LayoutThemeAndroid.cpp", | 377 "LayoutThemeAndroid.cpp", |
| 376 "LayoutThemeAndroid.h", | 378 "LayoutThemeAndroid.h", |
| 377 ] | 379 ] |
| 378 } | 380 } |
| 379 | 381 |
| 380 configs += [ | 382 configs += [ |
| 381 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 383 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 382 "//build/config/compiler:no_size_t_to_int_warning", | 384 "//build/config/compiler:no_size_t_to_int_warning", |
| 383 ] | 385 ] |
| 384 } | 386 } |
| OLD | NEW |