| 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "ng/ng_box_fragment.cc", | 319 "ng/ng_box_fragment.cc", |
| 320 "ng/ng_box_fragment.h", | 320 "ng/ng_box_fragment.h", |
| 321 "ng/ng_break_token.h", | 321 "ng/ng_break_token.h", |
| 322 "ng/ng_constraint_space.cc", | 322 "ng/ng_constraint_space.cc", |
| 323 "ng/ng_constraint_space.h", | 323 "ng/ng_constraint_space.h", |
| 324 "ng/ng_constraint_space_builder.cc", | 324 "ng/ng_constraint_space_builder.cc", |
| 325 "ng/ng_constraint_space_builder.h", | 325 "ng/ng_constraint_space_builder.h", |
| 326 "ng/ng_exclusion.cc", | 326 "ng/ng_exclusion.cc", |
| 327 "ng/ng_exclusion.h", | 327 "ng/ng_exclusion.h", |
| 328 "ng/ng_floating_object.h", | 328 "ng/ng_floating_object.h", |
| 329 "ng/ng_floats_utils.cc", |
| 330 "ng/ng_floats_utils.h", |
| 329 "ng/ng_fragment.cc", | 331 "ng/ng_fragment.cc", |
| 330 "ng/ng_fragment.h", | 332 "ng/ng_fragment.h", |
| 331 "ng/ng_fragment_builder.cc", | 333 "ng/ng_fragment_builder.cc", |
| 332 "ng/ng_fragment_builder.h", | 334 "ng/ng_fragment_builder.h", |
| 333 "ng/ng_inline_node.cc", | 335 "ng/ng_inline_node.cc", |
| 334 "ng/ng_inline_node.h", | 336 "ng/ng_inline_node.h", |
| 335 "ng/ng_layout_algorithm.h", | 337 "ng/ng_layout_algorithm.h", |
| 336 "ng/ng_layout_inline_items_builder.cc", | 338 "ng/ng_layout_inline_items_builder.cc", |
| 337 "ng/ng_layout_inline_items_builder.h", | 339 "ng/ng_layout_inline_items_builder.h", |
| 338 "ng/ng_layout_input_node.h", | 340 "ng/ng_layout_input_node.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 "LayoutThemeAndroid.cpp", | 407 "LayoutThemeAndroid.cpp", |
| 406 "LayoutThemeAndroid.h", | 408 "LayoutThemeAndroid.h", |
| 407 ] | 409 ] |
| 408 } | 410 } |
| 409 | 411 |
| 410 configs += [ | 412 configs += [ |
| 411 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 413 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 412 "//build/config/compiler:no_size_t_to_int_warning", | 414 "//build/config/compiler:no_size_t_to_int_warning", |
| 413 ] | 415 ] |
| 414 } | 416 } |
| OLD | NEW |