| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "ng/ng_block_layout_algorithm.h", | 290 "ng/ng_block_layout_algorithm.h", |
| 291 "ng/ng_block_node.cc", | 291 "ng/ng_block_node.cc", |
| 292 "ng/ng_block_node.h", | 292 "ng/ng_block_node.h", |
| 293 "ng/ng_box_fragment.cc", | 293 "ng/ng_box_fragment.cc", |
| 294 "ng/ng_box_fragment.h", | 294 "ng/ng_box_fragment.h", |
| 295 "ng/ng_break_token.h", | 295 "ng/ng_break_token.h", |
| 296 "ng/ng_constraint_space.cc", | 296 "ng/ng_constraint_space.cc", |
| 297 "ng/ng_constraint_space.h", | 297 "ng/ng_constraint_space.h", |
| 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_floating_object.h", |
| 300 "ng/ng_fragment.cc", | 301 "ng/ng_fragment.cc", |
| 301 "ng/ng_fragment.h", | 302 "ng/ng_fragment.h", |
| 302 "ng/ng_fragment_builder.cc", | 303 "ng/ng_fragment_builder.cc", |
| 303 "ng/ng_fragment_builder.h", | 304 "ng/ng_fragment_builder.h", |
| 304 "ng/ng_inline_layout_algorithm.cc", | 305 "ng/ng_inline_layout_algorithm.cc", |
| 305 "ng/ng_inline_layout_algorithm.h", | 306 "ng/ng_inline_layout_algorithm.h", |
| 306 "ng/ng_inline_node.cc", | 307 "ng/ng_inline_node.cc", |
| 307 "ng/ng_inline_node.h", | 308 "ng/ng_inline_node.h", |
| 308 "ng/ng_layout_inline_items_builder.cc", | 309 "ng/ng_layout_inline_items_builder.cc", |
| 309 "ng/ng_layout_inline_items_builder.h", | 310 "ng/ng_layout_inline_items_builder.h", |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 378 "LayoutThemeAndroid.cpp", | 379 "LayoutThemeAndroid.cpp", |
| 379 "LayoutThemeAndroid.h", | 380 "LayoutThemeAndroid.h", |
| 380 ] | 381 ] |
| 381 } | 382 } |
| 382 | 383 |
| 383 configs += [ | 384 configs += [ |
| 384 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 385 "//build/config/compiler:no_size_t_to_int_warning", | 386 "//build/config/compiler:no_size_t_to_int_warning", |
| 386 ] | 387 ] |
| 387 } | 388 } |
| OLD | NEW |