| 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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 "ng/ng_block_break_token.h", | 340 "ng/ng_block_break_token.h", |
| 341 "ng/ng_block_child_iterator.cc", | 341 "ng/ng_block_child_iterator.cc", |
| 342 "ng/ng_block_child_iterator.h", | 342 "ng/ng_block_child_iterator.h", |
| 343 "ng/ng_block_layout_algorithm.cc", | 343 "ng/ng_block_layout_algorithm.cc", |
| 344 "ng/ng_block_layout_algorithm.h", | 344 "ng/ng_block_layout_algorithm.h", |
| 345 "ng/ng_block_node.cc", | 345 "ng/ng_block_node.cc", |
| 346 "ng/ng_block_node.h", | 346 "ng/ng_block_node.h", |
| 347 "ng/ng_box_fragment.cc", | 347 "ng/ng_box_fragment.cc", |
| 348 "ng/ng_box_fragment.h", | 348 "ng/ng_box_fragment.h", |
| 349 "ng/ng_break_token.h", | 349 "ng/ng_break_token.h", |
| 350 "ng/ng_column_layout_algorithm.cc", |
| 351 "ng/ng_column_layout_algorithm.h", |
| 350 "ng/ng_constraint_space.cc", | 352 "ng/ng_constraint_space.cc", |
| 351 "ng/ng_constraint_space.h", | 353 "ng/ng_constraint_space.h", |
| 352 "ng/ng_constraint_space_builder.cc", | 354 "ng/ng_constraint_space_builder.cc", |
| 353 "ng/ng_constraint_space_builder.h", | 355 "ng/ng_constraint_space_builder.h", |
| 354 "ng/ng_exclusion.cc", | 356 "ng/ng_exclusion.cc", |
| 355 "ng/ng_exclusion.h", | 357 "ng/ng_exclusion.h", |
| 356 "ng/ng_floating_object.h", | 358 "ng/ng_floating_object.h", |
| 357 "ng/ng_floats_utils.cc", | 359 "ng/ng_floats_utils.cc", |
| 358 "ng/ng_floats_utils.h", | 360 "ng/ng_floats_utils.h", |
| 359 "ng/ng_fragment.cc", | 361 "ng/ng_fragment.cc", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 "LayoutThemeAndroid.cpp", | 453 "LayoutThemeAndroid.cpp", |
| 452 "LayoutThemeAndroid.h", | 454 "LayoutThemeAndroid.h", |
| 453 ] | 455 ] |
| 454 } | 456 } |
| 455 | 457 |
| 456 configs += [ | 458 configs += [ |
| 457 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 459 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 458 "//build/config/compiler:no_size_t_to_int_warning", | 460 "//build/config/compiler:no_size_t_to_int_warning", |
| 459 ] | 461 ] |
| 460 } | 462 } |
| OLD | NEW |