| 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_fragment.cc", | 305 "ng/ng_fragment.cc", |
| 306 "ng/ng_fragment.h", | 306 "ng/ng_fragment.h", |
| 307 "ng/ng_fragment_builder.cc", | 307 "ng/ng_fragment_builder.cc", |
| 308 "ng/ng_fragment_builder.h", | 308 "ng/ng_fragment_builder.h", |
| 309 "ng/ng_inline_layout_algorithm.cc", | 309 "ng/ng_inline_layout_algorithm.cc", |
| 310 "ng/ng_inline_layout_algorithm.h", | 310 "ng/ng_inline_layout_algorithm.h", |
| 311 "ng/ng_inline_node.cc", | 311 "ng/ng_inline_node.cc", |
| 312 "ng/ng_inline_node.h", | 312 "ng/ng_inline_node.h", |
| 313 "ng/ng_layout_inline_items_builder.cc", | 313 "ng/ng_layout_inline_items_builder.cc", |
| 314 "ng/ng_layout_inline_items_builder.h", | 314 "ng/ng_layout_inline_items_builder.h", |
| 315 "ng/ng_layout_input_node.cc", | |
| 316 "ng/ng_layout_input_node.h", | 315 "ng/ng_layout_input_node.h", |
| 317 "ng/ng_layout_opportunity_iterator.cc", | 316 "ng/ng_layout_opportunity_iterator.cc", |
| 318 "ng/ng_layout_opportunity_iterator.h", | 317 "ng/ng_layout_opportunity_iterator.h", |
| 319 "ng/ng_layout_opportunity_tree_node.cc", | 318 "ng/ng_layout_opportunity_tree_node.cc", |
| 320 "ng/ng_layout_opportunity_tree_node.h", | 319 "ng/ng_layout_opportunity_tree_node.h", |
| 321 "ng/ng_legacy_block_layout_algorithm.cc", | |
| 322 "ng/ng_legacy_block_layout_algorithm.h", | |
| 323 "ng/ng_length_utils.cc", | 320 "ng/ng_length_utils.cc", |
| 324 "ng/ng_length_utils.h", | 321 "ng/ng_length_utils.h", |
| 325 "ng/ng_line_builder.cc", | 322 "ng/ng_line_builder.cc", |
| 326 "ng/ng_line_builder.h", | 323 "ng/ng_line_builder.h", |
| 327 "ng/ng_macros.h", | 324 "ng/ng_macros.h", |
| 328 "ng/ng_out_of_flow_layout_part.cc", | 325 "ng/ng_out_of_flow_layout_part.cc", |
| 329 "ng/ng_out_of_flow_layout_part.h", | 326 "ng/ng_out_of_flow_layout_part.h", |
| 330 "ng/ng_physical_box_fragment.cc", | 327 "ng/ng_physical_box_fragment.cc", |
| 331 "ng/ng_physical_box_fragment.h", | 328 "ng/ng_physical_box_fragment.h", |
| 332 "ng/ng_physical_fragment.cc", | 329 "ng/ng_physical_fragment.cc", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 "LayoutThemeAndroid.cpp", | 380 "LayoutThemeAndroid.cpp", |
| 384 "LayoutThemeAndroid.h", | 381 "LayoutThemeAndroid.h", |
| 385 ] | 382 ] |
| 386 } | 383 } |
| 387 | 384 |
| 388 configs += [ | 385 configs += [ |
| 389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 386 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 390 "//build/config/compiler:no_size_t_to_int_warning", | 387 "//build/config/compiler:no_size_t_to_int_warning", |
| 391 ] | 388 ] |
| 392 } | 389 } |
| OLD | NEW |