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

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: Do no update the intrinsic size. 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 = [
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 "ColumnBalancer.cpp", 16 "ColumnBalancer.cpp",
15 "ColumnBalancer.h", 17 "ColumnBalancer.h",
16 "CounterNode.cpp", 18 "CounterNode.cpp",
17 "CounterNode.h", 19 "CounterNode.h",
18 "DepthOrderedLayoutObjectList.cpp", 20 "DepthOrderedLayoutObjectList.cpp",
19 "DepthOrderedLayoutObjectList.h", 21 "DepthOrderedLayoutObjectList.h",
20 "FlexibleBoxAlgorithm.cpp", 22 "FlexibleBoxAlgorithm.cpp",
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 "LayoutThemeAndroid.cpp", 413 "LayoutThemeAndroid.cpp",
412 "LayoutThemeAndroid.h", 414 "LayoutThemeAndroid.h",
413 ] 415 ]
414 } 416 }
415 417
416 configs += [ 418 configs += [
417 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 419 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
418 "//build/config/compiler:no_size_t_to_int_warning", 420 "//build/config/compiler:no_size_t_to_int_warning",
419 ] 421 ]
420 } 422 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698