OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'cc_source_files': [ | 7 'cc_source_files': [ |
8 'animation.cc', | 8 'animation.cc', |
9 'animation.h', | 9 'animation.h', |
10 'animation_curve.cc', | 10 'animation_curve.cc', |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 'picture_layer_tiling.cc', | 159 'picture_layer_tiling.cc', |
160 'picture_layer_tiling.h', | 160 'picture_layer_tiling.h', |
161 'picture_layer_tiling_set.cc', | 161 'picture_layer_tiling_set.cc', |
162 'picture_layer_tiling_set.h', | 162 'picture_layer_tiling_set.h', |
163 'picture_pile.cc', | 163 'picture_pile.cc', |
164 'picture_pile.h', | 164 'picture_pile.h', |
165 'picture_pile_base.cc', | 165 'picture_pile_base.cc', |
166 'picture_pile_base.h', | 166 'picture_pile_base.h', |
167 'picture_pile_impl.cc', | 167 'picture_pile_impl.cc', |
168 'picture_pile_impl.h', | 168 'picture_pile_impl.h', |
| 169 'pinch_zoom_scrollbar.cc', |
| 170 'pinch_zoom_scrollbar.h', |
| 171 'pinch_zoom_scrollbar_geometry.cc', |
| 172 'pinch_zoom_scrollbar_geometry.h', |
| 173 'pinch_zoom_scrollbar_painter.cc', |
| 174 'pinch_zoom_scrollbar_painter.h', |
169 'platform_color.h', | 175 'platform_color.h', |
170 'prioritized_resource.cc', | 176 'prioritized_resource.cc', |
171 'prioritized_resource.h', | 177 'prioritized_resource.h', |
172 'prioritized_resource_manager.cc', | 178 'prioritized_resource_manager.cc', |
173 'prioritized_resource_manager.h', | 179 'prioritized_resource_manager.h', |
174 'priority_calculator.cc', | 180 'priority_calculator.cc', |
175 'priority_calculator.h', | 181 'priority_calculator.h', |
176 'program_binding.cc', | 182 'program_binding.cc', |
177 'program_binding.h', | 183 'program_binding.h', |
178 'proxy.cc', | 184 'proxy.cc', |
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 'include_dirs': [ | 364 'include_dirs': [ |
359 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls | 365 # TODO(jamesr): Remove once https://webkit.org/b/105259 lands + rolls |
360 '<(webkit_src_dir)/Source/Platform/chromium' | 366 '<(webkit_src_dir)/Source/Platform/chromium' |
361 ] | 367 ] |
362 }, | 368 }, |
363 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 369 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
364 'msvs_disabled_warnings': [ 4267, ], | 370 'msvs_disabled_warnings': [ 4267, ], |
365 }, | 371 }, |
366 ], | 372 ], |
367 } | 373 } |
OLD | NEW |