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