| 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 19 matching lines...) Expand all Loading... |
| 30 'output/compositor_frame_ack.h', | 30 'output/compositor_frame_ack.h', |
| 31 'output/compositor_frame_metadata.cc', | 31 'output/compositor_frame_metadata.cc', |
| 32 'output/compositor_frame_metadata.h', | 32 'output/compositor_frame_metadata.h', |
| 33 'quads/content_draw_quad_base.cc', | 33 'quads/content_draw_quad_base.cc', |
| 34 'quads/content_draw_quad_base.h', | 34 'quads/content_draw_quad_base.h', |
| 35 'layers/content_layer.cc', | 35 'layers/content_layer.cc', |
| 36 'layers/content_layer.h', | 36 'layers/content_layer.h', |
| 37 'layers/content_layer_client.h', | 37 'layers/content_layer_client.h', |
| 38 'resources/content_layer_updater.cc', | 38 'resources/content_layer_updater.cc', |
| 39 'resources/content_layer_updater.h', | 39 'resources/content_layer_updater.h', |
| 40 'resources/graphic_buffer.h', |
| 40 'layers/contents_scaling_layer.cc', | 41 'layers/contents_scaling_layer.cc', |
| 41 'layers/contents_scaling_layer.h', | 42 'layers/contents_scaling_layer.h', |
| 42 'output/context_provider.h', | 43 'output/context_provider.h', |
| 43 'trees/damage_tracker.cc', | 44 'trees/damage_tracker.cc', |
| 44 'trees/damage_tracker.h', | 45 'trees/damage_tracker.h', |
| 45 'quads/debug_border_draw_quad.cc', | 46 'quads/debug_border_draw_quad.cc', |
| 46 'quads/debug_border_draw_quad.h', | 47 'quads/debug_border_draw_quad.h', |
| 47 'debug/debug_colors.cc', | 48 'debug/debug_colors.cc', |
| 48 'debug/debug_colors.h', | 49 'debug/debug_colors.h', |
| 49 'debug/debug_rect_history.cc', | 50 'debug/debug_rect_history.cc', |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 'CC_IMPLEMENTATION=1', | 374 'CC_IMPLEMENTATION=1', |
| 374 ], | 375 ], |
| 375 'sources': [ | 376 'sources': [ |
| 376 '<@(cc_source_files)', | 377 '<@(cc_source_files)', |
| 377 ], | 378 ], |
| 378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 379 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 379 'msvs_disabled_warnings': [ 4267, ], | 380 'msvs_disabled_warnings': [ 4267, ], |
| 380 }, | 381 }, |
| 381 ], | 382 ], |
| 382 } | 383 } |
| OLD | NEW |