| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'cc_source_files': [ | 8 'cc_source_files': [ |
| 9 'animation/animation.cc', | 9 'animation/animation.cc', |
| 10 'animation/animation.h', | 10 'animation/animation.h', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'output/copy_output_request.cc', | 164 'output/copy_output_request.cc', |
| 165 'output/copy_output_request.h', | 165 'output/copy_output_request.h', |
| 166 'output/copy_output_result.cc', | 166 'output/copy_output_result.cc', |
| 167 'output/copy_output_result.h', | 167 'output/copy_output_result.h', |
| 168 'output/delegated_frame_data.h', | 168 'output/delegated_frame_data.h', |
| 169 'output/delegated_frame_data.cc', | 169 'output/delegated_frame_data.cc', |
| 170 'output/delegating_renderer.cc', | 170 'output/delegating_renderer.cc', |
| 171 'output/delegating_renderer.h', | 171 'output/delegating_renderer.h', |
| 172 'output/direct_renderer.cc', | 172 'output/direct_renderer.cc', |
| 173 'output/direct_renderer.h', | 173 'output/direct_renderer.h', |
| 174 'output/filter_operation.cc', |
| 175 'output/filter_operation.h', |
| 176 'output/filter_operations.cc', |
| 177 'output/filter_operations.h', |
| 174 'output/geometry_binding.cc', | 178 'output/geometry_binding.cc', |
| 175 'output/geometry_binding.h', | 179 'output/geometry_binding.h', |
| 176 'output/gl_frame_data.h', | 180 'output/gl_frame_data.h', |
| 177 'output/gl_frame_data.cc', | 181 'output/gl_frame_data.cc', |
| 178 'output/gl_renderer.cc', | 182 'output/gl_renderer.cc', |
| 179 'output/gl_renderer.h', | 183 'output/gl_renderer.h', |
| 180 'output/gl_renderer_draw_cache.cc', | 184 'output/gl_renderer_draw_cache.cc', |
| 181 'output/gl_renderer_draw_cache.h', | 185 'output/gl_renderer_draw_cache.h', |
| 182 'output/output_surface.cc', | 186 'output/output_surface.cc', |
| 183 'output/output_surface.h', | 187 'output/output_surface.h', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 'CC_IMPLEMENTATION=1', | 374 'CC_IMPLEMENTATION=1', |
| 371 ], | 375 ], |
| 372 'sources': [ | 376 'sources': [ |
| 373 '<@(cc_source_files)', | 377 '<@(cc_source_files)', |
| 374 ], | 378 ], |
| 375 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 379 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 376 'msvs_disabled_warnings': [ 4267, ], | 380 'msvs_disabled_warnings': [ 4267, ], |
| 377 }, | 381 }, |
| 378 ], | 382 ], |
| 379 } | 383 } |
| OLD | NEW |