Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1691)

Side by Side Diff: third_party/WebKit/Source/core/layout/BUILD.gn

Issue 2764753007: [LayoutNG] Add NGLineBoxFragment (Closed)
Patch Set: Rebase again as other CLs landed faster Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_box_fragment.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 "ng/ng_layout_inline_items_builder.h", 354 "ng/ng_layout_inline_items_builder.h",
355 "ng/ng_layout_input_node.h", 355 "ng/ng_layout_input_node.h",
356 "ng/ng_layout_opportunity_iterator.cc", 356 "ng/ng_layout_opportunity_iterator.cc",
357 "ng/ng_layout_opportunity_iterator.h", 357 "ng/ng_layout_opportunity_iterator.h",
358 "ng/ng_layout_opportunity_tree_node.cc", 358 "ng/ng_layout_opportunity_tree_node.cc",
359 "ng/ng_layout_opportunity_tree_node.h", 359 "ng/ng_layout_opportunity_tree_node.h",
360 "ng/ng_layout_result.cc", 360 "ng/ng_layout_result.cc",
361 "ng/ng_layout_result.h", 361 "ng/ng_layout_result.h",
362 "ng/ng_length_utils.cc", 362 "ng/ng_length_utils.cc",
363 "ng/ng_length_utils.h", 363 "ng/ng_length_utils.h",
364 "ng/ng_line_box_fragment.cc",
365 "ng/ng_line_box_fragment.h",
366 "ng/ng_line_box_fragment_builder.cc",
367 "ng/ng_line_box_fragment_builder.h",
364 "ng/ng_line_builder.cc", 368 "ng/ng_line_builder.cc",
365 "ng/ng_line_builder.h", 369 "ng/ng_line_builder.h",
370 "ng/ng_line_height_metrics.cc",
371 "ng/ng_line_height_metrics.h",
366 "ng/ng_macros.h", 372 "ng/ng_macros.h",
367 "ng/ng_min_max_content_size.cc", 373 "ng/ng_min_max_content_size.cc",
368 "ng/ng_min_max_content_size.h", 374 "ng/ng_min_max_content_size.h",
369 "ng/ng_out_of_flow_layout_part.cc", 375 "ng/ng_out_of_flow_layout_part.cc",
370 "ng/ng_out_of_flow_layout_part.h", 376 "ng/ng_out_of_flow_layout_part.h",
371 "ng/ng_physical_box_fragment.cc", 377 "ng/ng_physical_box_fragment.cc",
372 "ng/ng_physical_box_fragment.h", 378 "ng/ng_physical_box_fragment.h",
373 "ng/ng_physical_fragment.cc", 379 "ng/ng_physical_fragment.cc",
374 "ng/ng_physical_fragment.h", 380 "ng/ng_physical_fragment.h",
381 "ng/ng_physical_line_box_fragment.cc",
382 "ng/ng_physical_line_box_fragment.h",
375 "ng/ng_physical_text_fragment.h", 383 "ng/ng_physical_text_fragment.h",
376 "ng/ng_relative_utils.cc", 384 "ng/ng_relative_utils.cc",
377 "ng/ng_relative_utils.h", 385 "ng/ng_relative_utils.h",
378 "ng/ng_space_utils.cc", 386 "ng/ng_space_utils.cc",
379 "ng/ng_space_utils.h", 387 "ng/ng_space_utils.h",
380 "ng/ng_text_fragment.cc", 388 "ng/ng_text_fragment.cc",
381 "ng/ng_text_fragment.h", 389 "ng/ng_text_fragment.h",
390 "ng/ng_text_fragment_builder.cc",
391 "ng/ng_text_fragment_builder.h",
382 "ng/ng_text_layout_algorithm.cc", 392 "ng/ng_text_layout_algorithm.cc",
383 "ng/ng_text_layout_algorithm.h", 393 "ng/ng_text_layout_algorithm.h",
384 "ng/ng_writing_mode.cc", 394 "ng/ng_writing_mode.cc",
385 "ng/ng_writing_mode.h", 395 "ng/ng_writing_mode.h",
386 "shapes/BoxShape.cpp", 396 "shapes/BoxShape.cpp",
387 "shapes/BoxShape.h", 397 "shapes/BoxShape.h",
388 "shapes/PolygonShape.cpp", 398 "shapes/PolygonShape.cpp",
389 "shapes/PolygonShape.h", 399 "shapes/PolygonShape.h",
390 "shapes/RasterShape.cpp", 400 "shapes/RasterShape.cpp",
391 "shapes/RasterShape.h", 401 "shapes/RasterShape.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 "LayoutThemeAndroid.cpp", 436 "LayoutThemeAndroid.cpp",
427 "LayoutThemeAndroid.h", 437 "LayoutThemeAndroid.h",
428 ] 438 ]
429 } 439 }
430 440
431 configs += [ 441 configs += [
432 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 442 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
433 "//build/config/compiler:no_size_t_to_int_warning", 443 "//build/config/compiler:no_size_t_to_int_warning",
434 ] 444 ]
435 } 445 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/ng/ng_box_fragment.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698