| 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 "DepthOrderedLayoutObjectList.cpp", | 22 "DepthOrderedLayoutObjectList.cpp", |
| 23 "DepthOrderedLayoutObjectList.h", | 23 "DepthOrderedLayoutObjectList.h", |
| 24 "FlexibleBoxAlgorithm.cpp", | 24 "FlexibleBoxAlgorithm.cpp", |
| 25 "FlexibleBoxAlgorithm.h", | 25 "FlexibleBoxAlgorithm.h", |
| 26 "FloatingObjects.cpp", | 26 "FloatingObjects.cpp", |
| 27 "FloatingObjects.h", | 27 "FloatingObjects.h", |
| 28 "FragmentainerIterator.cpp", | 28 "FragmentainerIterator.cpp", |
| 29 "FragmentainerIterator.h", | 29 "FragmentainerIterator.h", |
| 30 "FragmentationContext.h", | 30 "FragmentationContext.h", |
| 31 "GeneratedChildren.h", | 31 "GeneratedChildren.h", |
| 32 "Grid.cpp", |
| 33 "Grid.h", |
| 34 "GridTrackSizingAlgorithm.cpp", |
| 35 "GridTrackSizingAlgorithm.h", |
| 32 "HitTestCache.cpp", | 36 "HitTestCache.cpp", |
| 33 "HitTestCache.h", | 37 "HitTestCache.h", |
| 34 "HitTestCanvasResult.cpp", | 38 "HitTestCanvasResult.cpp", |
| 35 "HitTestLocation.cpp", | 39 "HitTestLocation.cpp", |
| 36 "HitTestLocation.h", | 40 "HitTestLocation.h", |
| 37 "HitTestResult.cpp", | 41 "HitTestResult.cpp", |
| 38 "HitTestingTransformState.cpp", | 42 "HitTestingTransformState.cpp", |
| 39 "HitTestingTransformState.h", | 43 "HitTestingTransformState.h", |
| 40 "ImageQualityController.cpp", | 44 "ImageQualityController.cpp", |
| 41 "ImageQualityController.h", | 45 "ImageQualityController.h", |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 "LayoutThemeAndroid.cpp", | 383 "LayoutThemeAndroid.cpp", |
| 380 "LayoutThemeAndroid.h", | 384 "LayoutThemeAndroid.h", |
| 381 ] | 385 ] |
| 382 } | 386 } |
| 383 | 387 |
| 384 configs += [ | 388 configs += [ |
| 385 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 389 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 386 "//build/config/compiler:no_size_t_to_int_warning", | 390 "//build/config/compiler:no_size_t_to_int_warning", |
| 387 ] | 391 ] |
| 388 } | 392 } |
| OLD | NEW |