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 21 matching lines...) Expand all Loading... |
32 "HitTestCache.cpp", | 32 "HitTestCache.cpp", |
33 "HitTestCache.h", | 33 "HitTestCache.h", |
34 "HitTestCanvasResult.cpp", | 34 "HitTestCanvasResult.cpp", |
35 "HitTestLocation.cpp", | 35 "HitTestLocation.cpp", |
36 "HitTestLocation.h", | 36 "HitTestLocation.h", |
37 "HitTestResult.cpp", | 37 "HitTestResult.cpp", |
38 "HitTestingTransformState.cpp", | 38 "HitTestingTransformState.cpp", |
39 "HitTestingTransformState.h", | 39 "HitTestingTransformState.h", |
40 "ImageQualityController.cpp", | 40 "ImageQualityController.cpp", |
41 "ImageQualityController.h", | 41 "ImageQualityController.h", |
| 42 "IntersectionGeometry.cpp", |
| 43 "IntersectionGeometry.h", |
42 "LayoutAnalyzer.cpp", | 44 "LayoutAnalyzer.cpp", |
43 "LayoutAnalyzer.h", | 45 "LayoutAnalyzer.h", |
44 "LayoutBR.cpp", | 46 "LayoutBR.cpp", |
45 "LayoutBlock.cpp", | 47 "LayoutBlock.cpp", |
46 "LayoutBlockFlow.cpp", | 48 "LayoutBlockFlow.cpp", |
47 "LayoutBlockFlowLine.cpp", | 49 "LayoutBlockFlowLine.cpp", |
48 "LayoutBox.cpp", | 50 "LayoutBox.cpp", |
49 "LayoutBoxModelObject.cpp", | 51 "LayoutBoxModelObject.cpp", |
50 "LayoutButton.cpp", | 52 "LayoutButton.cpp", |
51 "LayoutButton.h", | 53 "LayoutButton.h", |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "LayoutThemeAndroid.cpp", | 374 "LayoutThemeAndroid.cpp", |
373 "LayoutThemeAndroid.h", | 375 "LayoutThemeAndroid.h", |
374 ] | 376 ] |
375 } | 377 } |
376 | 378 |
377 configs += [ | 379 configs += [ |
378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
379 "//build/config/compiler:no_size_t_to_int_warning", | 381 "//build/config/compiler:no_size_t_to_int_warning", |
380 ] | 382 ] |
381 } | 383 } |
OLD | NEW |