| 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/animation.cc', | 8 'animation/animation.cc', |
| 9 'animation/animation.h', | 9 'animation/animation.h', |
| 10 'animation/animation_curve.cc', | 10 'animation/animation_curve.cc', |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'layers/render_surface.cc', | 204 'layers/render_surface.cc', |
| 205 'layers/render_surface.h', | 205 'layers/render_surface.h', |
| 206 'output/render_surface_filters.cc', | 206 'output/render_surface_filters.cc', |
| 207 'output/render_surface_filters.h', | 207 'output/render_surface_filters.h', |
| 208 'layers/render_surface_impl.cc', | 208 'layers/render_surface_impl.cc', |
| 209 'layers/render_surface_impl.h', | 209 'layers/render_surface_impl.h', |
| 210 'output/renderer.cc', | 210 'output/renderer.cc', |
| 211 'output/renderer.h', | 211 'output/renderer.h', |
| 212 'debug/rendering_stats.cc', | 212 'debug/rendering_stats.cc', |
| 213 'debug/rendering_stats.h', | 213 'debug/rendering_stats.h', |
| 214 'debug/rendering_stats_instrumentation.cc', |
| 215 'debug/rendering_stats_instrumentation.h', |
| 214 'resources/resource.cc', | 216 'resources/resource.cc', |
| 215 'resources/resource.h', | 217 'resources/resource.h', |
| 216 'resources/resource_pool.cc', | 218 'resources/resource_pool.cc', |
| 217 'resources/resource_pool.h', | 219 'resources/resource_pool.h', |
| 218 'resources/resource_provider.cc', | 220 'resources/resource_provider.cc', |
| 219 'resources/resource_provider.h', | 221 'resources/resource_provider.h', |
| 220 'resources/resource_update.cc', | 222 'resources/resource_update.cc', |
| 221 'resources/resource_update.h', | 223 'resources/resource_update.h', |
| 222 'resources/resource_update_controller.cc', | 224 'resources/resource_update_controller.cc', |
| 223 'resources/resource_update_controller.h', | 225 'resources/resource_update_controller.h', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 'CC_IMPLEMENTATION=1', | 369 'CC_IMPLEMENTATION=1', |
| 368 ], | 370 ], |
| 369 'sources': [ | 371 'sources': [ |
| 370 '<@(cc_source_files)', | 372 '<@(cc_source_files)', |
| 371 ], | 373 ], |
| 372 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 374 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 373 'msvs_disabled_warnings': [ 4267, ], | 375 'msvs_disabled_warnings': [ 4267, ], |
| 374 }, | 376 }, |
| 375 ], | 377 ], |
| 376 } | 378 } |
| OLD | NEW |