| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 'render_surface.cc', | 195 'render_surface.cc', |
| 196 'render_surface.h', | 196 'render_surface.h', |
| 197 'render_surface_filters.cc', | 197 'render_surface_filters.cc', |
| 198 'render_surface_filters.h', | 198 'render_surface_filters.h', |
| 199 'render_surface_impl.cc', | 199 'render_surface_impl.cc', |
| 200 'render_surface_impl.h', | 200 'render_surface_impl.h', |
| 201 'renderer.cc', | 201 'renderer.cc', |
| 202 'renderer.h', | 202 'renderer.h', |
| 203 'rendering_stats.cc', | 203 'rendering_stats.cc', |
| 204 'rendering_stats.h', | 204 'rendering_stats.h', |
| 205 'rendering_stats_recorder.cc', |
| 206 'rendering_stats_recorder.h', |
| 205 'resource.cc', | 207 'resource.cc', |
| 206 'resource.h', | 208 'resource.h', |
| 207 'resource_pool.cc', | 209 'resource_pool.cc', |
| 208 'resource_pool.h', | 210 'resource_pool.h', |
| 209 'resource_provider.cc', | 211 'resource_provider.cc', |
| 210 'resource_provider.h', | 212 'resource_provider.h', |
| 211 'resource_update.cc', | 213 'resource_update.cc', |
| 212 'resource_update.h', | 214 'resource_update.h', |
| 213 'resource_update_controller.cc', | 215 'resource_update_controller.cc', |
| 214 'resource_update_controller.h', | 216 'resource_update_controller.h', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 'CC_IMPLEMENTATION=1', | 360 'CC_IMPLEMENTATION=1', |
| 359 ], | 361 ], |
| 360 'sources': [ | 362 'sources': [ |
| 361 '<@(cc_source_files)', | 363 '<@(cc_source_files)', |
| 362 ], | 364 ], |
| 363 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 365 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 364 'msvs_disabled_warnings': [ 4267, ], | 366 'msvs_disabled_warnings': [ 4267, ], |
| 365 }, | 367 }, |
| 366 ], | 368 ], |
| 367 } | 369 } |
| OLD | NEW |