| 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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 "ng/ng_fragment.cc", | 374 "ng/ng_fragment.cc", |
| 375 "ng/ng_fragment.h", | 375 "ng/ng_fragment.h", |
| 376 "ng/ng_fragment_builder.cc", | 376 "ng/ng_fragment_builder.cc", |
| 377 "ng/ng_fragment_builder.h", | 377 "ng/ng_fragment_builder.h", |
| 378 "ng/ng_inline_break_token.cc", | 378 "ng/ng_inline_break_token.cc", |
| 379 "ng/ng_inline_break_token.h", | 379 "ng/ng_inline_break_token.h", |
| 380 "ng/ng_inline_layout_algorithm.cc", | 380 "ng/ng_inline_layout_algorithm.cc", |
| 381 "ng/ng_inline_layout_algorithm.h", | 381 "ng/ng_inline_layout_algorithm.h", |
| 382 "ng/ng_inline_node.cc", | 382 "ng/ng_inline_node.cc", |
| 383 "ng/ng_inline_node.h", | 383 "ng/ng_inline_node.h", |
| 384 "ng/ng_layout_algorithm.cc", |
| 384 "ng/ng_layout_algorithm.h", | 385 "ng/ng_layout_algorithm.h", |
| 385 "ng/ng_layout_inline_items_builder.cc", | 386 "ng/ng_layout_inline_items_builder.cc", |
| 386 "ng/ng_layout_inline_items_builder.h", | 387 "ng/ng_layout_inline_items_builder.h", |
| 387 "ng/ng_layout_input_node.h", | 388 "ng/ng_layout_input_node.h", |
| 388 "ng/ng_layout_opportunity_iterator.cc", | 389 "ng/ng_layout_opportunity_iterator.cc", |
| 389 "ng/ng_layout_opportunity_iterator.h", | 390 "ng/ng_layout_opportunity_iterator.h", |
| 390 "ng/ng_layout_opportunity_tree_node.cc", | 391 "ng/ng_layout_opportunity_tree_node.cc", |
| 391 "ng/ng_layout_opportunity_tree_node.h", | 392 "ng/ng_layout_opportunity_tree_node.h", |
| 392 "ng/ng_layout_result.cc", | 393 "ng/ng_layout_result.cc", |
| 393 "ng/ng_layout_result.h", | 394 "ng/ng_layout_result.h", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 "LayoutThemeAndroid.cpp", | 467 "LayoutThemeAndroid.cpp", |
| 467 "LayoutThemeAndroid.h", | 468 "LayoutThemeAndroid.h", |
| 468 ] | 469 ] |
| 469 } | 470 } |
| 470 | 471 |
| 471 configs += [ | 472 configs += [ |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 473 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 "//build/config/compiler:no_size_t_to_int_warning", | 474 "//build/config/compiler:no_size_t_to_int_warning", |
| 474 ] | 475 ] |
| 475 } | 476 } |
| OLD | NEW |