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

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

Issue 2760043004: Move NGConstraintSpace utility methods to a separate file (Closed)
Patch Set: 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 "ng/ng_macros.h", 351 "ng/ng_macros.h",
352 "ng/ng_min_max_content_size.cc", 352 "ng/ng_min_max_content_size.cc",
353 "ng/ng_min_max_content_size.h", 353 "ng/ng_min_max_content_size.h",
354 "ng/ng_out_of_flow_layout_part.cc", 354 "ng/ng_out_of_flow_layout_part.cc",
355 "ng/ng_out_of_flow_layout_part.h", 355 "ng/ng_out_of_flow_layout_part.h",
356 "ng/ng_physical_box_fragment.cc", 356 "ng/ng_physical_box_fragment.cc",
357 "ng/ng_physical_box_fragment.h", 357 "ng/ng_physical_box_fragment.h",
358 "ng/ng_physical_fragment.cc", 358 "ng/ng_physical_fragment.cc",
359 "ng/ng_physical_fragment.h", 359 "ng/ng_physical_fragment.h",
360 "ng/ng_physical_text_fragment.h", 360 "ng/ng_physical_text_fragment.h",
361 "ng/ng_space_utils.cc",
362 "ng/ng_space_utils.h",
361 "ng/ng_text_fragment.cc", 363 "ng/ng_text_fragment.cc",
362 "ng/ng_text_fragment.h", 364 "ng/ng_text_fragment.h",
363 "ng/ng_text_layout_algorithm.cc", 365 "ng/ng_text_layout_algorithm.cc",
364 "ng/ng_text_layout_algorithm.h", 366 "ng/ng_text_layout_algorithm.h",
365 "ng/ng_writing_mode.cc", 367 "ng/ng_writing_mode.cc",
366 "ng/ng_writing_mode.h", 368 "ng/ng_writing_mode.h",
367 "shapes/BoxShape.cpp", 369 "shapes/BoxShape.cpp",
368 "shapes/BoxShape.h", 370 "shapes/BoxShape.h",
369 "shapes/PolygonShape.cpp", 371 "shapes/PolygonShape.cpp",
370 "shapes/PolygonShape.h", 372 "shapes/PolygonShape.h",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
407 "LayoutThemeAndroid.cpp", 409 "LayoutThemeAndroid.cpp",
408 "LayoutThemeAndroid.h", 410 "LayoutThemeAndroid.h",
409 ] 411 ]
410 } 412 }
411 413
412 configs += [ 414 configs += [
413 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 415 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
414 "//build/config/compiler:no_size_t_to_int_warning", 416 "//build/config/compiler:no_size_t_to_int_warning",
415 ] 417 ]
416 } 418 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698