| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "LayoutFileUploadControl.cpp", | 61 "LayoutFileUploadControl.cpp", |
| 62 "LayoutFileUploadControl.h", | 62 "LayoutFileUploadControl.h", |
| 63 "LayoutFlexibleBox.cpp", | 63 "LayoutFlexibleBox.cpp", |
| 64 "LayoutFlexibleBox.h", | 64 "LayoutFlexibleBox.h", |
| 65 "LayoutFlowThread.cpp", | 65 "LayoutFlowThread.cpp", |
| 66 "LayoutFlowThread.h", | 66 "LayoutFlowThread.h", |
| 67 "LayoutFrame.cpp", | 67 "LayoutFrame.cpp", |
| 68 "LayoutFrame.h", | 68 "LayoutFrame.h", |
| 69 "LayoutFrameSet.cpp", | 69 "LayoutFrameSet.cpp", |
| 70 "LayoutFrameSet.h", | 70 "LayoutFrameSet.h", |
| 71 "LayoutFullScreen.cpp", | |
| 72 "LayoutFullScreen.h", | |
| 73 "LayoutGeometryMap.cpp", | 71 "LayoutGeometryMap.cpp", |
| 74 "LayoutGeometryMap.h", | 72 "LayoutGeometryMap.h", |
| 75 "LayoutGeometryMapStep.h", | 73 "LayoutGeometryMapStep.h", |
| 76 "LayoutGrid.cpp", | 74 "LayoutGrid.cpp", |
| 77 "LayoutGrid.h", | 75 "LayoutGrid.h", |
| 78 "LayoutHTMLCanvas.cpp", | 76 "LayoutHTMLCanvas.cpp", |
| 79 "LayoutHTMLCanvas.h", | 77 "LayoutHTMLCanvas.h", |
| 80 "LayoutIFrame.cpp", | 78 "LayoutIFrame.cpp", |
| 81 "LayoutIFrame.h", | 79 "LayoutIFrame.h", |
| 82 "LayoutImage.cpp", | 80 "LayoutImage.cpp", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 "TracedLayoutObject.h", | 204 "TracedLayoutObject.h", |
| 207 "VerticalPositionCache.h", | 205 "VerticalPositionCache.h", |
| 208 "ViewFragmentationContext.cpp", | 206 "ViewFragmentationContext.cpp", |
| 209 "ViewFragmentationContext.h", | 207 "ViewFragmentationContext.h", |
| 210 "api/HitTestAction.h", | 208 "api/HitTestAction.h", |
| 211 "api/LayoutAPIShim.h", | 209 "api/LayoutAPIShim.h", |
| 212 "api/LayoutBlockItem.h", | 210 "api/LayoutBlockItem.h", |
| 213 "api/LayoutBoxItem.h", | 211 "api/LayoutBoxItem.h", |
| 214 "api/LayoutBoxModel.h", | 212 "api/LayoutBoxModel.h", |
| 215 "api/LayoutEmbeddedItem.h", | 213 "api/LayoutEmbeddedItem.h", |
| 216 "api/LayoutFullScreenItem.h", | |
| 217 "api/LayoutImageItem.h", | 214 "api/LayoutImageItem.h", |
| 218 "api/LayoutItem.h", | 215 "api/LayoutItem.h", |
| 219 "api/LayoutLIItem.h", | 216 "api/LayoutLIItem.h", |
| 220 "api/LayoutMediaItem.h", | 217 "api/LayoutMediaItem.h", |
| 221 "api/LayoutMenuListItem.h", | 218 "api/LayoutMenuListItem.h", |
| 222 "api/LayoutPartItem.h", | 219 "api/LayoutPartItem.h", |
| 223 "api/LayoutProgressItem.h", | 220 "api/LayoutProgressItem.h", |
| 224 "api/LayoutSliderItem.h", | 221 "api/LayoutSliderItem.h", |
| 225 "api/LayoutTextControlItem.h", | 222 "api/LayoutTextControlItem.h", |
| 226 "api/LayoutTextFragmentItem.h", | 223 "api/LayoutTextFragmentItem.h", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "LayoutThemeAndroid.cpp", | 358 "LayoutThemeAndroid.cpp", |
| 362 "LayoutThemeAndroid.h", | 359 "LayoutThemeAndroid.h", |
| 363 ] | 360 ] |
| 364 } | 361 } |
| 365 | 362 |
| 366 configs += [ | 363 configs += [ |
| 367 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 364 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 368 "//build/config/compiler:no_size_t_to_int_warning", | 365 "//build/config/compiler:no_size_t_to_int_warning", |
| 369 ] | 366 ] |
| 370 } | 367 } |
| OLD | NEW |