| OLD | NEW |
| 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 11 matching lines...) Expand all Loading... |
| 22 "CounterNode.h", | 22 "CounterNode.h", |
| 23 "DepthOrderedLayoutObjectList.cpp", | 23 "DepthOrderedLayoutObjectList.cpp", |
| 24 "DepthOrderedLayoutObjectList.h", | 24 "DepthOrderedLayoutObjectList.h", |
| 25 "FlexibleBoxAlgorithm.cpp", | 25 "FlexibleBoxAlgorithm.cpp", |
| 26 "FlexibleBoxAlgorithm.h", | 26 "FlexibleBoxAlgorithm.h", |
| 27 "FloatingObjects.cpp", | 27 "FloatingObjects.cpp", |
| 28 "FloatingObjects.h", | 28 "FloatingObjects.h", |
| 29 "FragmentainerIterator.cpp", | 29 "FragmentainerIterator.cpp", |
| 30 "FragmentainerIterator.h", | 30 "FragmentainerIterator.h", |
| 31 "FragmentationContext.h", | 31 "FragmentationContext.h", |
| 32 "GapRects.h", | |
| 33 "GeneratedChildren.h", | 32 "GeneratedChildren.h", |
| 34 "Grid.cpp", | 33 "Grid.cpp", |
| 35 "Grid.h", | 34 "Grid.h", |
| 36 "GridTrackSizingAlgorithm.cpp", | 35 "GridTrackSizingAlgorithm.cpp", |
| 37 "GridTrackSizingAlgorithm.h", | 36 "GridTrackSizingAlgorithm.h", |
| 38 "HitTestCache.cpp", | 37 "HitTestCache.cpp", |
| 39 "HitTestCache.h", | 38 "HitTestCache.h", |
| 40 "HitTestCanvasResult.cpp", | 39 "HitTestCanvasResult.cpp", |
| 41 "HitTestCanvasResult.h", | 40 "HitTestCanvasResult.h", |
| 42 "HitTestLocation.cpp", | 41 "HitTestLocation.cpp", |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 "LayoutThemeAndroid.cpp", | 469 "LayoutThemeAndroid.cpp", |
| 471 "LayoutThemeAndroid.h", | 470 "LayoutThemeAndroid.h", |
| 472 ] | 471 ] |
| 473 } | 472 } |
| 474 | 473 |
| 475 configs += [ | 474 configs += [ |
| 476 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 475 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 477 "//build/config/compiler:no_size_t_to_int_warning", | 476 "//build/config/compiler:no_size_t_to_int_warning", |
| 478 ] | 477 ] |
| 479 } | 478 } |
| OLD | NEW |