| 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "LayoutTextCombine.cpp", | 177 "LayoutTextCombine.cpp", |
| 178 "LayoutTextCombine.h", | 178 "LayoutTextCombine.h", |
| 179 "LayoutTextControl.cpp", | 179 "LayoutTextControl.cpp", |
| 180 "LayoutTextControl.h", | 180 "LayoutTextControl.h", |
| 181 "LayoutTextControlMultiLine.cpp", | 181 "LayoutTextControlMultiLine.cpp", |
| 182 "LayoutTextControlMultiLine.h", | 182 "LayoutTextControlMultiLine.h", |
| 183 "LayoutTextControlSingleLine.cpp", | 183 "LayoutTextControlSingleLine.cpp", |
| 184 "LayoutTextControlSingleLine.h", | 184 "LayoutTextControlSingleLine.h", |
| 185 "LayoutTextFragment.cpp", | 185 "LayoutTextFragment.cpp", |
| 186 "LayoutTextFragment.h", | 186 "LayoutTextFragment.h", |
| 187 "LayoutTextTrackContainer.cpp", | |
| 188 "LayoutTextTrackContainer.h", | |
| 189 "LayoutTheme.cpp", | 187 "LayoutTheme.cpp", |
| 190 "LayoutTheme.h", | 188 "LayoutTheme.h", |
| 191 "LayoutThemeDefault.cpp", | 189 "LayoutThemeDefault.cpp", |
| 192 "LayoutThemeDefault.h", | 190 "LayoutThemeDefault.h", |
| 193 "LayoutThemeFontProvider.cpp", | 191 "LayoutThemeFontProvider.cpp", |
| 194 "LayoutThemeFontProvider.h", | 192 "LayoutThemeFontProvider.h", |
| 195 "LayoutThemeMac.h", | 193 "LayoutThemeMac.h", |
| 196 "LayoutThemeMac.mm", | 194 "LayoutThemeMac.mm", |
| 197 "LayoutThemeMobile.cpp", | 195 "LayoutThemeMobile.cpp", |
| 198 "LayoutThemeMobile.h", | 196 "LayoutThemeMobile.h", |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 "LayoutThemeAndroid.cpp", | 464 "LayoutThemeAndroid.cpp", |
| 467 "LayoutThemeAndroid.h", | 465 "LayoutThemeAndroid.h", |
| 468 ] | 466 ] |
| 469 } | 467 } |
| 470 | 468 |
| 471 configs += [ | 469 configs += [ |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 470 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 "//build/config/compiler:no_size_t_to_int_warning", | 471 "//build/config/compiler:no_size_t_to_int_warning", |
| 474 ] | 472 ] |
| 475 } | 473 } |
| OLD | NEW |