| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'layers/layer_position_constraint.h', | 110 'layers/layer_position_constraint.h', |
| 111 'layers/nine_patch_layer.cc', | 111 'layers/nine_patch_layer.cc', |
| 112 'layers/nine_patch_layer.h', | 112 'layers/nine_patch_layer.h', |
| 113 'layers/nine_patch_layer_impl.cc', | 113 'layers/nine_patch_layer_impl.cc', |
| 114 'layers/nine_patch_layer_impl.h', | 114 'layers/nine_patch_layer_impl.h', |
| 115 'layers/paint_properties.h', | 115 'layers/paint_properties.h', |
| 116 'layers/picture_image_layer.cc', | 116 'layers/picture_image_layer.cc', |
| 117 'layers/picture_image_layer.h', | 117 'layers/picture_image_layer.h', |
| 118 'layers/picture_image_layer_impl.cc', | 118 'layers/picture_image_layer_impl.cc', |
| 119 'layers/picture_image_layer_impl.h', | 119 'layers/picture_image_layer_impl.h', |
| 120 |
| 121 'layers/picture_scrollbar_layer.cc', |
| 122 'layers/picture_scrollbar_layer.h', |
| 123 'layers/picture_scrollbar_layer_impl.cc', |
| 124 'layers/picture_scrollbar_layer_impl.h', |
| 125 'resources/ui_resource_manager.cc', |
| 126 'resources/ui_resource_manager.h', |
| 127 |
| 120 'layers/picture_layer.cc', | 128 'layers/picture_layer.cc', |
| 121 'layers/picture_layer.h', | 129 'layers/picture_layer.h', |
| 122 'layers/picture_layer_impl.cc', | 130 'layers/picture_layer_impl.cc', |
| 123 'layers/picture_layer_impl.h', | 131 'layers/picture_layer_impl.h', |
| 124 'layers/quad_sink.h', | 132 'layers/quad_sink.h', |
| 125 'layers/render_pass_sink.h', | 133 'layers/render_pass_sink.h', |
| 126 'layers/render_surface.cc', | 134 'layers/render_surface.cc', |
| 127 'layers/render_surface.h', | 135 'layers/render_surface.h', |
| 128 'layers/render_surface_impl.cc', | 136 'layers/render_surface_impl.cc', |
| 129 'layers/render_surface_impl.h', | 137 'layers/render_surface_impl.h', |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 'CC_IMPLEMENTATION=1', | 383 'CC_IMPLEMENTATION=1', |
| 376 ], | 384 ], |
| 377 'sources': [ | 385 'sources': [ |
| 378 '<@(cc_source_files)', | 386 '<@(cc_source_files)', |
| 379 ], | 387 ], |
| 380 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 388 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 381 'msvs_disabled_warnings': [ 4267, ], | 389 'msvs_disabled_warnings': [ 4267, ], |
| 382 }, | 390 }, |
| 383 ], | 391 ], |
| 384 } | 392 } |
| OLD | NEW |