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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 "ng/ng_fragment_base.h", | 295 "ng/ng_fragment_base.h", |
296 "ng/ng_fragment_builder.cc", | 296 "ng/ng_fragment_builder.cc", |
297 "ng/ng_fragment_builder.h", | 297 "ng/ng_fragment_builder.h", |
298 "ng/ng_layout_input_text.h", | 298 "ng/ng_layout_input_text.h", |
299 "ng/ng_layout_opportunity_iterator.cc", | 299 "ng/ng_layout_opportunity_iterator.cc", |
300 "ng/ng_layout_opportunity_iterator.h", | 300 "ng/ng_layout_opportunity_iterator.h", |
301 "ng/ng_layout_opportunity_tree_node.cc", | 301 "ng/ng_layout_opportunity_tree_node.cc", |
302 "ng/ng_layout_opportunity_tree_node.h", | 302 "ng/ng_layout_opportunity_tree_node.h", |
303 "ng/ng_length_utils.cc", | 303 "ng/ng_length_utils.cc", |
304 "ng/ng_length_utils.h", | 304 "ng/ng_length_utils.h", |
| 305 "ng/ng_macros.h", |
305 "ng/ng_physical_constraint_space.cc", | 306 "ng/ng_physical_constraint_space.cc", |
306 "ng/ng_physical_constraint_space.h", | 307 "ng/ng_physical_constraint_space.h", |
307 "ng/ng_physical_fragment.cc", | 308 "ng/ng_physical_fragment.cc", |
308 "ng/ng_physical_fragment.h", | 309 "ng/ng_physical_fragment.h", |
309 "ng/ng_physical_fragment_base.cc", | 310 "ng/ng_physical_fragment_base.cc", |
310 "ng/ng_physical_fragment_base.h", | 311 "ng/ng_physical_fragment_base.h", |
311 "ng/ng_physical_text_fragment.h", | 312 "ng/ng_physical_text_fragment.h", |
312 "ng/ng_text_fragment.cc", | 313 "ng/ng_text_fragment.cc", |
313 "ng/ng_text_fragment.h", | 314 "ng/ng_text_fragment.h", |
314 "ng/ng_units.cc", | 315 "ng/ng_units.cc", |
315 "ng/ng_units.h", | 316 "ng/ng_units.h", |
316 "ng/ng_writing_mode.cc", | 317 "ng/ng_writing_mode.cc", |
317 "ng/ng_writing_mode.h", | 318 "ng/ng_writing_mode.h", |
| 319 "ng/ptr_util.h", |
318 "shapes/BoxShape.cpp", | 320 "shapes/BoxShape.cpp", |
319 "shapes/BoxShape.h", | 321 "shapes/BoxShape.h", |
320 "shapes/PolygonShape.cpp", | 322 "shapes/PolygonShape.cpp", |
321 "shapes/PolygonShape.h", | 323 "shapes/PolygonShape.h", |
322 "shapes/RasterShape.cpp", | 324 "shapes/RasterShape.cpp", |
323 "shapes/RasterShape.h", | 325 "shapes/RasterShape.h", |
324 "shapes/RectangleShape.cpp", | 326 "shapes/RectangleShape.cpp", |
325 "shapes/RectangleShape.h", | 327 "shapes/RectangleShape.h", |
326 "shapes/Shape.cpp", | 328 "shapes/Shape.cpp", |
327 "shapes/Shape.h", | 329 "shapes/Shape.h", |
(...skipping 30 matching lines...) Expand all Loading... |
358 "LayoutThemeAndroid.cpp", | 360 "LayoutThemeAndroid.cpp", |
359 "LayoutThemeAndroid.h", | 361 "LayoutThemeAndroid.h", |
360 ] | 362 ] |
361 } | 363 } |
362 | 364 |
363 configs += [ | 365 configs += [ |
364 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 366 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
365 "//build/config/compiler:no_size_t_to_int_warning", | 367 "//build/config/compiler:no_size_t_to_int_warning", |
366 ] | 368 ] |
367 } | 369 } |
OLD | NEW |