| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 "ng/ng_constraint_space_builder.cc", | 298 "ng/ng_constraint_space_builder.cc", |
| 299 "ng/ng_constraint_space_builder.h", | 299 "ng/ng_constraint_space_builder.h", |
| 300 "ng/ng_fragment.cc", | 300 "ng/ng_fragment.cc", |
| 301 "ng/ng_fragment.h", | 301 "ng/ng_fragment.h", |
| 302 "ng/ng_fragment_builder.cc", | 302 "ng/ng_fragment_builder.cc", |
| 303 "ng/ng_fragment_builder.h", | 303 "ng/ng_fragment_builder.h", |
| 304 "ng/ng_inline_layout_algorithm.cc", | 304 "ng/ng_inline_layout_algorithm.cc", |
| 305 "ng/ng_inline_layout_algorithm.h", | 305 "ng/ng_inline_layout_algorithm.h", |
| 306 "ng/ng_inline_node.cc", | 306 "ng/ng_inline_node.cc", |
| 307 "ng/ng_inline_node.h", | 307 "ng/ng_inline_node.h", |
| 308 "ng/ng_layout_coordinator.cc", | |
| 309 "ng/ng_layout_coordinator.h", | |
| 310 "ng/ng_layout_inline_items_builder.cc", | 308 "ng/ng_layout_inline_items_builder.cc", |
| 311 "ng/ng_layout_inline_items_builder.h", | 309 "ng/ng_layout_inline_items_builder.h", |
| 312 "ng/ng_layout_input_node.cc", | 310 "ng/ng_layout_input_node.cc", |
| 313 "ng/ng_layout_input_node.h", | 311 "ng/ng_layout_input_node.h", |
| 314 "ng/ng_layout_opportunity_iterator.cc", | 312 "ng/ng_layout_opportunity_iterator.cc", |
| 315 "ng/ng_layout_opportunity_iterator.h", | 313 "ng/ng_layout_opportunity_iterator.h", |
| 316 "ng/ng_layout_opportunity_tree_node.cc", | 314 "ng/ng_layout_opportunity_tree_node.cc", |
| 317 "ng/ng_layout_opportunity_tree_node.h", | 315 "ng/ng_layout_opportunity_tree_node.h", |
| 318 "ng/ng_legacy_block_layout_algorithm.cc", | 316 "ng/ng_legacy_block_layout_algorithm.cc", |
| 319 "ng/ng_legacy_block_layout_algorithm.h", | 317 "ng/ng_legacy_block_layout_algorithm.h", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 "LayoutThemeAndroid.cpp", | 378 "LayoutThemeAndroid.cpp", |
| 381 "LayoutThemeAndroid.h", | 379 "LayoutThemeAndroid.h", |
| 382 ] | 380 ] |
| 383 } | 381 } |
| 384 | 382 |
| 385 configs += [ | 383 configs += [ |
| 386 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 384 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 387 "//build/config/compiler:no_size_t_to_int_warning", | 385 "//build/config/compiler:no_size_t_to_int_warning", |
| 388 ] | 386 ] |
| 389 } | 387 } |
| OLD | NEW |