| 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 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 "ng/ng_macros.h", | 349 "ng/ng_macros.h", |
| 350 "ng/ng_min_max_content_size.cc", | 350 "ng/ng_min_max_content_size.cc", |
| 351 "ng/ng_min_max_content_size.h", | 351 "ng/ng_min_max_content_size.h", |
| 352 "ng/ng_out_of_flow_layout_part.cc", | 352 "ng/ng_out_of_flow_layout_part.cc", |
| 353 "ng/ng_out_of_flow_layout_part.h", | 353 "ng/ng_out_of_flow_layout_part.h", |
| 354 "ng/ng_physical_box_fragment.cc", | 354 "ng/ng_physical_box_fragment.cc", |
| 355 "ng/ng_physical_box_fragment.h", | 355 "ng/ng_physical_box_fragment.h", |
| 356 "ng/ng_physical_fragment.cc", | 356 "ng/ng_physical_fragment.cc", |
| 357 "ng/ng_physical_fragment.h", | 357 "ng/ng_physical_fragment.h", |
| 358 "ng/ng_physical_text_fragment.h", | 358 "ng/ng_physical_text_fragment.h", |
| 359 "ng/ng_relative_utils.cc", |
| 360 "ng/ng_relative_utils.h", |
| 359 "ng/ng_text_fragment.cc", | 361 "ng/ng_text_fragment.cc", |
| 360 "ng/ng_text_fragment.h", | 362 "ng/ng_text_fragment.h", |
| 361 "ng/ng_text_layout_algorithm.cc", | 363 "ng/ng_text_layout_algorithm.cc", |
| 362 "ng/ng_text_layout_algorithm.h", | 364 "ng/ng_text_layout_algorithm.h", |
| 363 "ng/ng_writing_mode.cc", | 365 "ng/ng_writing_mode.cc", |
| 364 "ng/ng_writing_mode.h", | 366 "ng/ng_writing_mode.h", |
| 365 "shapes/BoxShape.cpp", | 367 "shapes/BoxShape.cpp", |
| 366 "shapes/BoxShape.h", | 368 "shapes/BoxShape.h", |
| 367 "shapes/PolygonShape.cpp", | 369 "shapes/PolygonShape.cpp", |
| 368 "shapes/PolygonShape.h", | 370 "shapes/PolygonShape.h", |
| (...skipping 36 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 |