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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 "ng/ng_layout_coordinator.cc", | 306 "ng/ng_layout_coordinator.cc", |
307 "ng/ng_layout_coordinator.h", | 307 "ng/ng_layout_coordinator.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.cc", | 310 "ng/ng_layout_input_node.cc", |
311 "ng/ng_layout_input_node.h", | 311 "ng/ng_layout_input_node.h", |
312 "ng/ng_layout_opportunity_iterator.cc", | 312 "ng/ng_layout_opportunity_iterator.cc", |
313 "ng/ng_layout_opportunity_iterator.h", | 313 "ng/ng_layout_opportunity_iterator.h", |
314 "ng/ng_layout_opportunity_tree_node.cc", | 314 "ng/ng_layout_opportunity_tree_node.cc", |
315 "ng/ng_layout_opportunity_tree_node.h", | 315 "ng/ng_layout_opportunity_tree_node.h", |
| 316 "ng/ng_legacy_block_layout_algorithm.cc", |
| 317 "ng/ng_legacy_block_layout_algorithm.h", |
316 "ng/ng_length_utils.cc", | 318 "ng/ng_length_utils.cc", |
317 "ng/ng_length_utils.h", | 319 "ng/ng_length_utils.h", |
318 "ng/ng_macros.h", | 320 "ng/ng_macros.h", |
319 "ng/ng_physical_fragment.cc", | 321 "ng/ng_physical_fragment.cc", |
320 "ng/ng_physical_fragment.h", | 322 "ng/ng_physical_fragment.h", |
321 "ng/ng_physical_fragment_base.cc", | 323 "ng/ng_physical_fragment_base.cc", |
322 "ng/ng_physical_fragment_base.h", | 324 "ng/ng_physical_fragment_base.h", |
323 "ng/ng_physical_text_fragment.h", | 325 "ng/ng_physical_text_fragment.h", |
324 "ng/ng_text_fragment.cc", | 326 "ng/ng_text_fragment.cc", |
325 "ng/ng_text_fragment.h", | 327 "ng/ng_text_fragment.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "LayoutThemeAndroid.cpp", | 374 "LayoutThemeAndroid.cpp", |
373 "LayoutThemeAndroid.h", | 375 "LayoutThemeAndroid.h", |
374 ] | 376 ] |
375 } | 377 } |
376 | 378 |
377 configs += [ | 379 configs += [ |
378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
379 "//build/config/compiler:no_size_t_to_int_warning", | 381 "//build/config/compiler:no_size_t_to_int_warning", |
380 ] | 382 ] |
381 } | 383 } |
OLD | NEW |