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

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

Issue 2721613003: [LayoutNG] Move remaining ng_units structs to their own files (Closed)
Patch Set: Don't export NGBoxStrut for now 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
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 "line/InlineIterator.h", 273 "line/InlineIterator.h",
274 "line/InlineTextBox.cpp", 274 "line/InlineTextBox.cpp",
275 "line/LineBoxList.cpp", 275 "line/LineBoxList.cpp",
276 "line/LineBreaker.cpp", 276 "line/LineBreaker.cpp",
277 "line/LineBreaker.h", 277 "line/LineBreaker.h",
278 "line/LineWidth.cpp", 278 "line/LineWidth.cpp",
279 "line/LineWidth.h", 279 "line/LineWidth.h",
280 "line/RootInlineBox.cpp", 280 "line/RootInlineBox.cpp",
281 "line/TrailingObjects.cpp", 281 "line/TrailingObjects.cpp",
282 "line/TrailingObjects.h", 282 "line/TrailingObjects.h",
283 "ng/geometry/ng_box_strut.cc",
284 "ng/geometry/ng_box_strut.h",
285 "ng/geometry/ng_edge.h",
283 "ng/geometry/ng_logical_offset.cc", 286 "ng/geometry/ng_logical_offset.cc",
284 "ng/geometry/ng_logical_offset.h", 287 "ng/geometry/ng_logical_offset.h",
288 "ng/geometry/ng_logical_rect.cc",
289 "ng/geometry/ng_logical_rect.h",
285 "ng/geometry/ng_logical_size.cc", 290 "ng/geometry/ng_logical_size.cc",
286 "ng/geometry/ng_logical_size.h", 291 "ng/geometry/ng_logical_size.h",
292 "ng/geometry/ng_margin_strut.cc",
293 "ng/geometry/ng_margin_strut.h",
287 "ng/geometry/ng_physical_location.cc", 294 "ng/geometry/ng_physical_location.cc",
288 "ng/geometry/ng_physical_location.h", 295 "ng/geometry/ng_physical_location.h",
289 "ng/geometry/ng_physical_offset.cc", 296 "ng/geometry/ng_physical_offset.cc",
290 "ng/geometry/ng_physical_offset.h", 297 "ng/geometry/ng_physical_offset.h",
291 "ng/geometry/ng_physical_rect.cc", 298 "ng/geometry/ng_physical_rect.cc",
292 "ng/geometry/ng_physical_rect.h", 299 "ng/geometry/ng_physical_rect.h",
293 "ng/geometry/ng_physical_size.cc", 300 "ng/geometry/ng_physical_size.cc",
294 "ng/geometry/ng_physical_size.h", 301 "ng/geometry/ng_physical_size.h",
302 "ng/geometry/ng_static_position.cc",
303 "ng/geometry/ng_static_position.h",
295 "ng/layout_ng_block_flow.cc", 304 "ng/layout_ng_block_flow.cc",
296 "ng/layout_ng_block_flow.h", 305 "ng/layout_ng_block_flow.h",
297 "ng/ng_absolute_utils.cc", 306 "ng/ng_absolute_utils.cc",
298 "ng/ng_absolute_utils.h", 307 "ng/ng_absolute_utils.h",
299 "ng/ng_bidi_paragraph.cc", 308 "ng/ng_bidi_paragraph.cc",
300 "ng/ng_bidi_paragraph.h", 309 "ng/ng_bidi_paragraph.h",
301 "ng/ng_block_break_token.cc", 310 "ng/ng_block_break_token.cc",
302 "ng/ng_block_break_token.h", 311 "ng/ng_block_break_token.h",
303 "ng/ng_block_child_iterator.cc", 312 "ng/ng_block_child_iterator.cc",
304 "ng/ng_block_child_iterator.h", 313 "ng/ng_block_child_iterator.h",
305 "ng/ng_block_layout_algorithm.cc", 314 "ng/ng_block_layout_algorithm.cc",
306 "ng/ng_block_layout_algorithm.h", 315 "ng/ng_block_layout_algorithm.h",
307 "ng/ng_block_node.cc", 316 "ng/ng_block_node.cc",
308 "ng/ng_block_node.h", 317 "ng/ng_block_node.h",
309 "ng/ng_box_fragment.cc", 318 "ng/ng_box_fragment.cc",
310 "ng/ng_box_fragment.h", 319 "ng/ng_box_fragment.h",
311 "ng/ng_break_token.h", 320 "ng/ng_break_token.h",
312 "ng/ng_constraint_space.cc", 321 "ng/ng_constraint_space.cc",
313 "ng/ng_constraint_space.h", 322 "ng/ng_constraint_space.h",
314 "ng/ng_constraint_space_builder.cc", 323 "ng/ng_constraint_space_builder.cc",
315 "ng/ng_constraint_space_builder.h", 324 "ng/ng_constraint_space_builder.h",
325 "ng/ng_exclusion.cc",
326 "ng/ng_exclusion.h",
316 "ng/ng_floating_object.h", 327 "ng/ng_floating_object.h",
317 "ng/ng_fragment.cc", 328 "ng/ng_fragment.cc",
318 "ng/ng_fragment.h", 329 "ng/ng_fragment.h",
319 "ng/ng_fragment_builder.cc", 330 "ng/ng_fragment_builder.cc",
320 "ng/ng_fragment_builder.h", 331 "ng/ng_fragment_builder.h",
321 "ng/ng_inline_node.cc", 332 "ng/ng_inline_node.cc",
322 "ng/ng_inline_node.h", 333 "ng/ng_inline_node.h",
323 "ng/ng_layout_algorithm.h", 334 "ng/ng_layout_algorithm.h",
324 "ng/ng_layout_inline_items_builder.cc", 335 "ng/ng_layout_inline_items_builder.cc",
325 "ng/ng_layout_inline_items_builder.h", 336 "ng/ng_layout_inline_items_builder.h",
326 "ng/ng_layout_input_node.h", 337 "ng/ng_layout_input_node.h",
327 "ng/ng_layout_opportunity_iterator.cc", 338 "ng/ng_layout_opportunity_iterator.cc",
328 "ng/ng_layout_opportunity_iterator.h", 339 "ng/ng_layout_opportunity_iterator.h",
329 "ng/ng_layout_opportunity_tree_node.cc", 340 "ng/ng_layout_opportunity_tree_node.cc",
330 "ng/ng_layout_opportunity_tree_node.h", 341 "ng/ng_layout_opportunity_tree_node.h",
331 "ng/ng_layout_result.cc", 342 "ng/ng_layout_result.cc",
332 "ng/ng_layout_result.h", 343 "ng/ng_layout_result.h",
333 "ng/ng_length_utils.cc", 344 "ng/ng_length_utils.cc",
334 "ng/ng_length_utils.h", 345 "ng/ng_length_utils.h",
335 "ng/ng_line_builder.cc", 346 "ng/ng_line_builder.cc",
336 "ng/ng_line_builder.h", 347 "ng/ng_line_builder.h",
337 "ng/ng_macros.h", 348 "ng/ng_macros.h",
349 "ng/ng_min_max_content_size.cc",
350 "ng/ng_min_max_content_size.h",
338 "ng/ng_out_of_flow_layout_part.cc", 351 "ng/ng_out_of_flow_layout_part.cc",
339 "ng/ng_out_of_flow_layout_part.h", 352 "ng/ng_out_of_flow_layout_part.h",
340 "ng/ng_physical_box_fragment.cc", 353 "ng/ng_physical_box_fragment.cc",
341 "ng/ng_physical_box_fragment.h", 354 "ng/ng_physical_box_fragment.h",
342 "ng/ng_physical_fragment.cc", 355 "ng/ng_physical_fragment.cc",
343 "ng/ng_physical_fragment.h", 356 "ng/ng_physical_fragment.h",
344 "ng/ng_physical_text_fragment.h", 357 "ng/ng_physical_text_fragment.h",
345 "ng/ng_text_fragment.cc", 358 "ng/ng_text_fragment.cc",
346 "ng/ng_text_fragment.h", 359 "ng/ng_text_fragment.h",
347 "ng/ng_text_layout_algorithm.cc", 360 "ng/ng_text_layout_algorithm.cc",
348 "ng/ng_text_layout_algorithm.h", 361 "ng/ng_text_layout_algorithm.h",
349 "ng/ng_units.cc",
350 "ng/ng_units.h",
351 "ng/ng_writing_mode.cc", 362 "ng/ng_writing_mode.cc",
352 "ng/ng_writing_mode.h", 363 "ng/ng_writing_mode.h",
353 "shapes/BoxShape.cpp", 364 "shapes/BoxShape.cpp",
354 "shapes/BoxShape.h", 365 "shapes/BoxShape.h",
355 "shapes/PolygonShape.cpp", 366 "shapes/PolygonShape.cpp",
356 "shapes/PolygonShape.h", 367 "shapes/PolygonShape.h",
357 "shapes/RasterShape.cpp", 368 "shapes/RasterShape.cpp",
358 "shapes/RasterShape.h", 369 "shapes/RasterShape.h",
359 "shapes/RectangleShape.cpp", 370 "shapes/RectangleShape.cpp",
360 "shapes/RectangleShape.h", 371 "shapes/RectangleShape.h",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 "LayoutThemeAndroid.cpp", 404 "LayoutThemeAndroid.cpp",
394 "LayoutThemeAndroid.h", 405 "LayoutThemeAndroid.h",
395 ] 406 ]
396 } 407 }
397 408
398 configs += [ 409 configs += [
399 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 410 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
400 "//build/config/compiler:no_size_t_to_int_warning", 411 "//build/config/compiler:no_size_t_to_int_warning",
401 ] 412 ]
402 } 413 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698