| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 "line/TrailingObjects.cpp", | 278 "line/TrailingObjects.cpp", |
| 279 "line/TrailingObjects.h", | 279 "line/TrailingObjects.h", |
| 280 "ng/layout_ng_block_flow.cc", | 280 "ng/layout_ng_block_flow.cc", |
| 281 "ng/layout_ng_block_flow.h", | 281 "ng/layout_ng_block_flow.h", |
| 282 "ng/ng_block_layout_algorithm.cc", | 282 "ng/ng_block_layout_algorithm.cc", |
| 283 "ng/ng_block_layout_algorithm.h", | 283 "ng/ng_block_layout_algorithm.h", |
| 284 "ng/ng_box.cc", | 284 "ng/ng_box.cc", |
| 285 "ng/ng_box.h", | 285 "ng/ng_box.h", |
| 286 "ng/ng_constraint_space.cc", | 286 "ng/ng_constraint_space.cc", |
| 287 "ng/ng_constraint_space.h", | 287 "ng/ng_constraint_space.h", |
| 288 "ng/ng_constraint_space_builder.cc", |
| 289 "ng/ng_constraint_space_builder.h", |
| 288 "ng/ng_direction.cc", | 290 "ng/ng_direction.cc", |
| 289 "ng/ng_direction.h", | 291 "ng/ng_direction.h", |
| 290 "ng/ng_fragment.cc", | 292 "ng/ng_fragment.cc", |
| 291 "ng/ng_fragment.h", | 293 "ng/ng_fragment.h", |
| 292 "ng/ng_fragment_base.cc", | 294 "ng/ng_fragment_base.cc", |
| 293 "ng/ng_fragment_base.h", | 295 "ng/ng_fragment_base.h", |
| 294 "ng/ng_fragment_builder.cc", | 296 "ng/ng_fragment_builder.cc", |
| 295 "ng/ng_fragment_builder.h", | 297 "ng/ng_fragment_builder.h", |
| 296 "ng/ng_layout_input_text.h", | 298 "ng/ng_layout_input_text.h", |
| 297 "ng/ng_layout_opportunity_iterator.cc", | 299 "ng/ng_layout_opportunity_iterator.cc", |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "LayoutThemeAndroid.cpp", | 357 "LayoutThemeAndroid.cpp", |
| 356 "LayoutThemeAndroid.h", | 358 "LayoutThemeAndroid.h", |
| 357 ] | 359 ] |
| 358 } | 360 } |
| 359 | 361 |
| 360 configs += [ | 362 configs += [ |
| 361 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 363 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 362 "//build/config/compiler:no_size_t_to_int_warning", | 364 "//build/config/compiler:no_size_t_to_int_warning", |
| 363 ] | 365 ] |
| 364 } | 366 } |
| OLD | NEW |