| 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_tree_node.h", | 341 "ng/ng_layout_opportunity_tree_node.h", |
| 342 "ng/ng_layout_result.cc", | 342 "ng/ng_layout_result.cc", |
| 343 "ng/ng_layout_result.h", | 343 "ng/ng_layout_result.h", |
| 344 "ng/ng_length_utils.cc", | 344 "ng/ng_length_utils.cc", |
| 345 "ng/ng_length_utils.h", | 345 "ng/ng_length_utils.h", |
| 346 "ng/ng_line_builder.cc", | 346 "ng/ng_line_builder.cc", |
| 347 "ng/ng_line_builder.h", | 347 "ng/ng_line_builder.h", |
| 348 "ng/ng_macros.h", | 348 "ng/ng_macros.h", |
| 349 "ng/ng_min_max_content_size.cc", | 349 "ng/ng_min_max_content_size.cc", |
| 350 "ng/ng_min_max_content_size.h", | 350 "ng/ng_min_max_content_size.h", |
| 351 "ng/ng_multi_column_layout_algorithm.cc", |
| 352 "ng/ng_multi_column_layout_algorithm.h", |
| 351 "ng/ng_out_of_flow_layout_part.cc", | 353 "ng/ng_out_of_flow_layout_part.cc", |
| 352 "ng/ng_out_of_flow_layout_part.h", | 354 "ng/ng_out_of_flow_layout_part.h", |
| 353 "ng/ng_physical_box_fragment.cc", | 355 "ng/ng_physical_box_fragment.cc", |
| 354 "ng/ng_physical_box_fragment.h", | 356 "ng/ng_physical_box_fragment.h", |
| 355 "ng/ng_physical_fragment.cc", | 357 "ng/ng_physical_fragment.cc", |
| 356 "ng/ng_physical_fragment.h", | 358 "ng/ng_physical_fragment.h", |
| 357 "ng/ng_physical_text_fragment.h", | 359 "ng/ng_physical_text_fragment.h", |
| 358 "ng/ng_text_fragment.cc", | 360 "ng/ng_text_fragment.cc", |
| 359 "ng/ng_text_fragment.h", | 361 "ng/ng_text_fragment.h", |
| 360 "ng/ng_text_layout_algorithm.cc", | 362 "ng/ng_text_layout_algorithm.cc", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 "LayoutThemeAndroid.cpp", | 406 "LayoutThemeAndroid.cpp", |
| 405 "LayoutThemeAndroid.h", | 407 "LayoutThemeAndroid.h", |
| 406 ] | 408 ] |
| 407 } | 409 } |
| 408 | 410 |
| 409 configs += [ | 411 configs += [ |
| 410 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 412 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 411 "//build/config/compiler:no_size_t_to_int_warning", | 413 "//build/config/compiler:no_size_t_to_int_warning", |
| 412 ] | 414 ] |
| 413 } | 415 } |
| OLD | NEW |