| 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 12 matching lines...) Expand all Loading... |
| 23 'resources/caching_bitmap_content_layer_updater.h', | 23 'resources/caching_bitmap_content_layer_updater.h', |
| 24 'quads/checkerboard_draw_quad.cc', | 24 'quads/checkerboard_draw_quad.cc', |
| 25 'quads/checkerboard_draw_quad.h', | 25 'quads/checkerboard_draw_quad.h', |
| 26 'base/completion_event.h', | 26 'base/completion_event.h', |
| 27 'output/compositor_frame.cc', | 27 'output/compositor_frame.cc', |
| 28 'output/compositor_frame.h', | 28 'output/compositor_frame.h', |
| 29 'output/compositor_frame_ack.cc', | 29 'output/compositor_frame_ack.cc', |
| 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', |
| 34 'quads/content_draw_quad_base.h', |
| 33 'layers/content_layer.cc', | 35 'layers/content_layer.cc', |
| 34 'layers/content_layer.h', | 36 'layers/content_layer.h', |
| 35 'layers/content_layer_client.h', | 37 'layers/content_layer_client.h', |
| 36 'resources/content_layer_updater.cc', | 38 'resources/content_layer_updater.cc', |
| 37 'resources/content_layer_updater.h', | 39 'resources/content_layer_updater.h', |
| 38 'layers/contents_scaling_layer.cc', | 40 'layers/contents_scaling_layer.cc', |
| 39 'layers/contents_scaling_layer.h', | 41 'layers/contents_scaling_layer.h', |
| 40 'output/context_provider.h', | 42 'output/context_provider.h', |
| 41 'trees/damage_tracker.cc', | 43 'trees/damage_tracker.cc', |
| 42 'trees/damage_tracker.h', | 44 'trees/damage_tracker.h', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 'output/output_surface.h', | 147 'output/output_surface.h', |
| 146 'output/output_surface_client.h', | 148 'output/output_surface_client.h', |
| 147 'debug/overdraw_metrics.cc', | 149 'debug/overdraw_metrics.cc', |
| 148 'debug/overdraw_metrics.h', | 150 'debug/overdraw_metrics.h', |
| 149 'input/page_scale_animation.cc', | 151 'input/page_scale_animation.cc', |
| 150 'input/page_scale_animation.h', | 152 'input/page_scale_animation.h', |
| 151 'debug/paint_time_counter.cc', | 153 'debug/paint_time_counter.cc', |
| 152 'debug/paint_time_counter.h', | 154 'debug/paint_time_counter.h', |
| 153 'resources/picture.cc', | 155 'resources/picture.cc', |
| 154 'resources/picture.h', | 156 'resources/picture.h', |
| 157 'quads/picture_draw_quad.cc', |
| 158 'quads/picture_draw_quad.h', |
| 155 'layers/picture_image_layer.cc', | 159 'layers/picture_image_layer.cc', |
| 156 'layers/picture_image_layer.h', | 160 'layers/picture_image_layer.h', |
| 157 'layers/picture_image_layer_impl.cc', | 161 'layers/picture_image_layer_impl.cc', |
| 158 'layers/picture_image_layer_impl.h', | 162 'layers/picture_image_layer_impl.h', |
| 159 'layers/picture_layer.cc', | 163 'layers/picture_layer.cc', |
| 160 'layers/picture_layer.h', | 164 'layers/picture_layer.h', |
| 161 'layers/picture_layer_impl.cc', | 165 'layers/picture_layer_impl.cc', |
| 162 'layers/picture_layer_impl.h', | 166 'layers/picture_layer_impl.h', |
| 163 'resources/picture_layer_tiling.cc', | 167 'resources/picture_layer_tiling.cc', |
| 164 'resources/picture_layer_tiling.h', | 168 'resources/picture_layer_tiling.h', |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 'CC_IMPLEMENTATION=1', | 373 'CC_IMPLEMENTATION=1', |
| 370 ], | 374 ], |
| 371 'sources': [ | 375 'sources': [ |
| 372 '<@(cc_source_files)', | 376 '<@(cc_source_files)', |
| 373 ], | 377 ], |
| 374 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 375 'msvs_disabled_warnings': [ 4267, ], | 379 'msvs_disabled_warnings': [ 4267, ], |
| 376 }, | 380 }, |
| 377 ], | 381 ], |
| 378 } | 382 } |
| OLD | NEW |