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

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

Issue 2943573002: Make NGInlineItemsBuilder construct whitespace-collapsed offset mapping (Closed)
Patch Set: Tue Jun 27 20:31:45 PDT 2017 Created 3 years, 5 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 308 matching lines...) Expand 10 before | Expand all | Expand 10 after
319 "line/LineInfo.h", 319 "line/LineInfo.h",
320 "line/LineLayoutState.h", 320 "line/LineLayoutState.h",
321 "line/LineWidth.cpp", 321 "line/LineWidth.cpp",
322 "line/LineWidth.h", 322 "line/LineWidth.h",
323 "line/RootInlineBox.cpp", 323 "line/RootInlineBox.cpp",
324 "line/RootInlineBox.h", 324 "line/RootInlineBox.h",
325 "line/TrailingObjects.cpp", 325 "line/TrailingObjects.cpp",
326 "line/TrailingObjects.h", 326 "line/TrailingObjects.h",
327 "line/WordMeasurement.h", 327 "line/WordMeasurement.h",
328 "ng/api/empty_offset_mapping_builder.h", 328 "ng/api/empty_offset_mapping_builder.h",
329 "ng/api/ng_offset_mapping_builder.cc",
330 "ng/api/ng_offset_mapping_builder.h",
kojii 2017/06/28 07:45:50 Can you please put them into "inline"? These are a
Xiaocheng 2017/06/28 18:21:58 Done.
329 "ng/geometry/ng_border_edges.cc", 331 "ng/geometry/ng_border_edges.cc",
330 "ng/geometry/ng_border_edges.h", 332 "ng/geometry/ng_border_edges.h",
331 "ng/geometry/ng_box_strut.cc", 333 "ng/geometry/ng_box_strut.cc",
332 "ng/geometry/ng_box_strut.h", 334 "ng/geometry/ng_box_strut.h",
333 "ng/geometry/ng_edge.h", 335 "ng/geometry/ng_edge.h",
334 "ng/geometry/ng_logical_offset.cc", 336 "ng/geometry/ng_logical_offset.cc",
335 "ng/geometry/ng_logical_offset.h", 337 "ng/geometry/ng_logical_offset.h",
336 "ng/geometry/ng_logical_rect.cc", 338 "ng/geometry/ng_logical_rect.cc",
337 "ng/geometry/ng_logical_rect.h", 339 "ng/geometry/ng_logical_rect.h",
338 "ng/geometry/ng_logical_size.cc", 340 "ng/geometry/ng_logical_size.cc",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 "LayoutThemeAndroid.h", 487 "LayoutThemeAndroid.h",
486 "WebFontRenderingAndroid.cpp", 488 "WebFontRenderingAndroid.cpp",
487 ] 489 ]
488 } 490 }
489 491
490 configs += [ 492 configs += [
491 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 493 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
492 "//build/config/compiler:no_size_t_to_int_warning", 494 "//build/config/compiler:no_size_t_to_int_warning",
493 ] 495 ]
494 } 496 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698