| 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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "api/LayoutBoxItem.h", | 242 "api/LayoutBoxItem.h", |
| 243 "api/LayoutBoxModel.h", | 243 "api/LayoutBoxModel.h", |
| 244 "api/LayoutEmbeddedItem.h", | 244 "api/LayoutEmbeddedItem.h", |
| 245 "api/LayoutFullScreenItem.h", | 245 "api/LayoutFullScreenItem.h", |
| 246 "api/LayoutImageItem.h", | 246 "api/LayoutImageItem.h", |
| 247 "api/LayoutItem.h", | 247 "api/LayoutItem.h", |
| 248 "api/LayoutLIItem.h", | 248 "api/LayoutLIItem.h", |
| 249 "api/LayoutMenuListItem.h", | 249 "api/LayoutMenuListItem.h", |
| 250 "api/LayoutPartItem.h", | 250 "api/LayoutPartItem.h", |
| 251 "api/LayoutProgressItem.h", | 251 "api/LayoutProgressItem.h", |
| 252 "api/LayoutSliderItem.cpp", |
| 252 "api/LayoutSliderItem.h", | 253 "api/LayoutSliderItem.h", |
| 253 "api/LayoutTextControlItem.h", | 254 "api/LayoutTextControlItem.h", |
| 254 "api/LayoutTextFragmentItem.h", | 255 "api/LayoutTextFragmentItem.h", |
| 255 "api/LayoutTextItem.h", | 256 "api/LayoutTextItem.h", |
| 256 "api/LayoutViewItem.h", | 257 "api/LayoutViewItem.h", |
| 257 "api/LineLayoutAPIShim.h", | 258 "api/LineLayoutAPIShim.h", |
| 258 "api/LineLayoutBR.h", | 259 "api/LineLayoutBR.h", |
| 259 "api/LineLayoutBlockFlow.h", | 260 "api/LineLayoutBlockFlow.h", |
| 260 "api/LineLayoutBox.h", | 261 "api/LineLayoutBox.h", |
| 261 "api/LineLayoutBoxModel.h", | 262 "api/LineLayoutBoxModel.h", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 "LayoutThemeAndroid.cpp", | 467 "LayoutThemeAndroid.cpp", |
| 467 "LayoutThemeAndroid.h", | 468 "LayoutThemeAndroid.h", |
| 468 ] | 469 ] |
| 469 } | 470 } |
| 470 | 471 |
| 471 configs += [ | 472 configs += [ |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 473 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 "//build/config/compiler:no_size_t_to_int_warning", | 474 "//build/config/compiler:no_size_t_to_int_warning", |
| 474 ] | 475 ] |
| 475 } | 476 } |
| OLD | NEW |