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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 "ng/ng_exclusion.cc", | 397 "ng/ng_exclusion.cc", |
398 "ng/ng_exclusion.h", | 398 "ng/ng_exclusion.h", |
399 "ng/ng_floating_object.h", | 399 "ng/ng_floating_object.h", |
400 "ng/ng_floats_utils.cc", | 400 "ng/ng_floats_utils.cc", |
401 "ng/ng_floats_utils.h", | 401 "ng/ng_floats_utils.h", |
402 "ng/ng_fragment.cc", | 402 "ng/ng_fragment.cc", |
403 "ng/ng_fragment.h", | 403 "ng/ng_fragment.h", |
404 "ng/ng_fragment_builder.cc", | 404 "ng/ng_fragment_builder.cc", |
405 "ng/ng_fragment_builder.h", | 405 "ng/ng_fragment_builder.h", |
406 "ng/ng_layout_algorithm.h", | 406 "ng/ng_layout_algorithm.h", |
| 407 "ng/ng_layout_input_node.cc", |
407 "ng/ng_layout_input_node.h", | 408 "ng/ng_layout_input_node.h", |
408 "ng/ng_layout_opportunity_iterator.cc", | 409 "ng/ng_layout_opportunity_iterator.cc", |
409 "ng/ng_layout_opportunity_iterator.h", | 410 "ng/ng_layout_opportunity_iterator.h", |
410 "ng/ng_layout_opportunity_tree_node.cc", | 411 "ng/ng_layout_opportunity_tree_node.cc", |
411 "ng/ng_layout_opportunity_tree_node.h", | 412 "ng/ng_layout_opportunity_tree_node.h", |
412 "ng/ng_layout_result.cc", | 413 "ng/ng_layout_result.cc", |
413 "ng/ng_layout_result.h", | 414 "ng/ng_layout_result.h", |
414 "ng/ng_length_utils.cc", | 415 "ng/ng_length_utils.cc", |
415 "ng/ng_length_utils.h", | 416 "ng/ng_length_utils.h", |
416 "ng/ng_macros.h", | 417 "ng/ng_macros.h", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 "LayoutThemeAndroid.cpp", | 472 "LayoutThemeAndroid.cpp", |
472 "LayoutThemeAndroid.h", | 473 "LayoutThemeAndroid.h", |
473 ] | 474 ] |
474 } | 475 } |
475 | 476 |
476 configs += [ | 477 configs += [ |
477 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 478 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
478 "//build/config/compiler:no_size_t_to_int_warning", | 479 "//build/config/compiler:no_size_t_to_int_warning", |
479 ] | 480 ] |
480 } | 481 } |
OLD | NEW |