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

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

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get advantage of recomputing the intrinsic size to solve the issues with orthogonal flows. Created 3 years, 10 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 = [
11 "BaselineAlignment.cpp",
12 "BaselineAlignment.h",
11 "BidiRun.h", 13 "BidiRun.h",
12 "BidiRunForLine.cpp", 14 "BidiRunForLine.cpp",
13 "BidiRunForLine.h", 15 "BidiRunForLine.h",
14 "ClipRect.cpp", 16 "ClipRect.cpp",
15 "ClipRect.h", 17 "ClipRect.h",
16 "ClipRects.h", 18 "ClipRects.h",
17 "ClipRectsCache.h", 19 "ClipRectsCache.h",
18 "ColumnBalancer.cpp", 20 "ColumnBalancer.cpp",
19 "ColumnBalancer.h", 21 "ColumnBalancer.h",
20 "CounterNode.cpp", 22 "CounterNode.cpp",
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 "LayoutThemeAndroid.cpp", 382 "LayoutThemeAndroid.cpp",
381 "LayoutThemeAndroid.h", 383 "LayoutThemeAndroid.h",
382 ] 384 ]
383 } 385 }
384 386
385 configs += [ 387 configs += [
386 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 388 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
387 "//build/config/compiler:no_size_t_to_int_warning", 389 "//build/config/compiler:no_size_t_to_int_warning",
388 ] 390 ]
389 } 391 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698