| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 "ng/ng_length_utils.h", | 415 "ng/ng_length_utils.h", |
| 416 "ng/ng_macros.h", | 416 "ng/ng_macros.h", |
| 417 "ng/ng_min_max_content_size.cc", | 417 "ng/ng_min_max_content_size.cc", |
| 418 "ng/ng_min_max_content_size.h", | 418 "ng/ng_min_max_content_size.h", |
| 419 "ng/ng_out_of_flow_layout_part.cc", | 419 "ng/ng_out_of_flow_layout_part.cc", |
| 420 "ng/ng_out_of_flow_layout_part.h", | 420 "ng/ng_out_of_flow_layout_part.h", |
| 421 "ng/ng_physical_box_fragment.cc", | 421 "ng/ng_physical_box_fragment.cc", |
| 422 "ng/ng_physical_box_fragment.h", | 422 "ng/ng_physical_box_fragment.h", |
| 423 "ng/ng_physical_fragment.cc", | 423 "ng/ng_physical_fragment.cc", |
| 424 "ng/ng_physical_fragment.h", | 424 "ng/ng_physical_fragment.h", |
| 425 "ng/ng_positioned_float.h", |
| 425 "ng/ng_relative_utils.cc", | 426 "ng/ng_relative_utils.cc", |
| 426 "ng/ng_relative_utils.h", | 427 "ng/ng_relative_utils.h", |
| 427 "ng/ng_space_utils.cc", | 428 "ng/ng_space_utils.cc", |
| 428 "ng/ng_space_utils.h", | 429 "ng/ng_space_utils.h", |
| 429 "ng/ng_writing_mode.cc", | 430 "ng/ng_writing_mode.cc", |
| 430 "ng/ng_writing_mode.h", | 431 "ng/ng_writing_mode.h", |
| 431 "shapes/BoxShape.cpp", | 432 "shapes/BoxShape.cpp", |
| 432 "shapes/BoxShape.h", | 433 "shapes/BoxShape.h", |
| 433 "shapes/PolygonShape.cpp", | 434 "shapes/PolygonShape.cpp", |
| 434 "shapes/PolygonShape.h", | 435 "shapes/PolygonShape.h", |
| (...skipping 36 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 |