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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'picture_layer_tiling.cc', | 160 'picture_layer_tiling.cc', |
161 'picture_layer_tiling.h', | 161 'picture_layer_tiling.h', |
162 'picture_layer_tiling_set.cc', | 162 'picture_layer_tiling_set.cc', |
163 'picture_layer_tiling_set.h', | 163 'picture_layer_tiling_set.h', |
164 'picture_pile.cc', | 164 'picture_pile.cc', |
165 'picture_pile.h', | 165 'picture_pile.h', |
166 'picture_pile_base.cc', | 166 'picture_pile_base.cc', |
167 'picture_pile_base.h', | 167 'picture_pile_base.h', |
168 'picture_pile_impl.cc', | 168 'picture_pile_impl.cc', |
169 'picture_pile_impl.h', | 169 'picture_pile_impl.h', |
| 170 'pinch_zoom_scrollbar.cc', |
| 171 'pinch_zoom_scrollbar.h', |
| 172 'pinch_zoom_scrollbar_geometry.cc', |
| 173 'pinch_zoom_scrollbar_geometry.h', |
| 174 'pinch_zoom_scrollbar_painter.cc', |
| 175 'pinch_zoom_scrollbar_painter.h', |
170 'platform_color.h', | 176 'platform_color.h', |
171 'prioritized_resource.cc', | 177 'prioritized_resource.cc', |
172 'prioritized_resource.h', | 178 'prioritized_resource.h', |
173 'prioritized_resource_manager.cc', | 179 'prioritized_resource_manager.cc', |
174 'prioritized_resource_manager.h', | 180 'prioritized_resource_manager.h', |
175 'priority_calculator.cc', | 181 'priority_calculator.cc', |
176 'priority_calculator.h', | 182 'priority_calculator.h', |
177 'program_binding.cc', | 183 'program_binding.cc', |
178 'program_binding.h', | 184 'program_binding.h', |
179 'proxy.cc', | 185 'proxy.cc', |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
358 'CC_IMPLEMENTATION=1', | 364 'CC_IMPLEMENTATION=1', |
359 ], | 365 ], |
360 'sources': [ | 366 'sources': [ |
361 '<@(cc_source_files)', | 367 '<@(cc_source_files)', |
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 |