| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 "LayoutTextControl.cpp", | 152 "LayoutTextControl.cpp", |
| 153 "LayoutTextControl.h", | 153 "LayoutTextControl.h", |
| 154 "LayoutTextControlMultiLine.cpp", | 154 "LayoutTextControlMultiLine.cpp", |
| 155 "LayoutTextControlMultiLine.h", | 155 "LayoutTextControlMultiLine.h", |
| 156 "LayoutTextControlSingleLine.cpp", | 156 "LayoutTextControlSingleLine.cpp", |
| 157 "LayoutTextControlSingleLine.h", | 157 "LayoutTextControlSingleLine.h", |
| 158 "LayoutTextFragment.cpp", | 158 "LayoutTextFragment.cpp", |
| 159 "LayoutTextFragment.h", | 159 "LayoutTextFragment.h", |
| 160 "LayoutTextTrackContainer.cpp", | 160 "LayoutTextTrackContainer.cpp", |
| 161 "LayoutTextTrackContainer.h", | 161 "LayoutTextTrackContainer.h", |
| 162 "LayoutTheme.cpp", | 162 #"LayoutTheme.cpp", |
| 163 "LayoutTheme.h", | 163 #"LayoutTheme.h", |
| 164 "LayoutThemeDefault.cpp", | 164 #"LayoutThemeDefault.cpp", |
| 165 "LayoutThemeDefault.h", | 165 #"LayoutThemeDefault.h", |
| 166 "LayoutThemeFontProvider.cpp", | 166 #"LayoutThemeFontProvider.cpp", |
| 167 "LayoutThemeFontProvider.h", | 167 #"LayoutThemeFontProvider.h", |
| 168 "LayoutThemeMac.h", | 168 #"LayoutThemeMac.h", |
| 169 "LayoutThemeMac.mm", | 169 #"LayoutThemeMac.mm", |
| 170 "LayoutThemeMobile.cpp", | 170 #"LayoutThemeMobile.cpp", |
| 171 "LayoutThemeMobile.h", | 171 #"LayoutThemeMobile.h", |
| 172 "LayoutTreeAsText.cpp", | 172 "LayoutTreeAsText.cpp", |
| 173 "LayoutVTTCue.cpp", | 173 "LayoutVTTCue.cpp", |
| 174 "LayoutVTTCue.h", | 174 "LayoutVTTCue.h", |
| 175 "LayoutVideo.cpp", | 175 "LayoutVideo.cpp", |
| 176 "LayoutVideo.h", | 176 "LayoutVideo.h", |
| 177 "LayoutView.cpp", | 177 "LayoutView.cpp", |
| 178 "LayoutWordBreak.cpp", | 178 "LayoutWordBreak.cpp", |
| 179 "LayoutWordBreak.h", | 179 "LayoutWordBreak.h", |
| 180 "ListMarkerText.cpp", | 180 "ListMarkerText.cpp", |
| 181 "ListMarkerText.h", | 181 "ListMarkerText.h", |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "LayoutThemeAndroid.cpp", | 355 "LayoutThemeAndroid.cpp", |
| 356 "LayoutThemeAndroid.h", | 356 "LayoutThemeAndroid.h", |
| 357 ] | 357 ] |
| 358 } | 358 } |
| 359 | 359 |
| 360 configs += [ | 360 configs += [ |
| 361 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 361 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 362 "//build/config/compiler:no_size_t_to_int_warning", | 362 "//build/config/compiler:no_size_t_to_int_warning", |
| 363 ] | 363 ] |
| 364 } | 364 } |
| OLD | NEW |