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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 'layers/picture_layer_impl.cc', | 122 'layers/picture_layer_impl.cc', |
123 'layers/picture_layer_impl.h', | 123 'layers/picture_layer_impl.h', |
124 'layers/quad_sink.h', | 124 'layers/quad_sink.h', |
125 'layers/render_pass_sink.h', | 125 'layers/render_pass_sink.h', |
126 'layers/render_surface.cc', | 126 'layers/render_surface.cc', |
127 'layers/render_surface.h', | 127 'layers/render_surface.h', |
128 'layers/render_surface_impl.cc', | 128 'layers/render_surface_impl.cc', |
129 'layers/render_surface_impl.h', | 129 'layers/render_surface_impl.h', |
130 'layers/scrollbar_layer.cc', | 130 'layers/scrollbar_layer.cc', |
131 'layers/scrollbar_layer.h', | 131 'layers/scrollbar_layer.h', |
| 132 'layers/scrollbar_layer_base.cc', |
| 133 'layers/scrollbar_layer_base.h', |
132 'layers/scrollbar_layer_impl.cc', | 134 'layers/scrollbar_layer_impl.cc', |
133 'layers/scrollbar_layer_impl.h', | 135 'layers/scrollbar_layer_impl.h', |
| 136 'layers/scrollbar_layer_impl_base.cc', |
| 137 'layers/scrollbar_layer_impl_base.h', |
134 'layers/solid_color_layer.cc', | 138 'layers/solid_color_layer.cc', |
135 'layers/solid_color_layer.h', | 139 'layers/solid_color_layer.h', |
136 'layers/solid_color_layer_impl.cc', | 140 'layers/solid_color_layer_impl.cc', |
137 'layers/solid_color_layer_impl.h', | 141 'layers/solid_color_layer_impl.h', |
| 142 'layers/solid_color_scrollbar_layer.cc', |
| 143 'layers/solid_color_scrollbar_layer.h', |
| 144 'layers/solid_color_scrollbar_layer_impl.cc', |
| 145 'layers/solid_color_scrollbar_layer_impl.h', |
138 'layers/texture_layer.cc', | 146 'layers/texture_layer.cc', |
139 'layers/texture_layer.h', | 147 'layers/texture_layer.h', |
140 'layers/texture_layer_client.h', | 148 'layers/texture_layer_client.h', |
141 'layers/texture_layer_impl.cc', | 149 'layers/texture_layer_impl.cc', |
142 'layers/texture_layer_impl.h', | 150 'layers/texture_layer_impl.h', |
143 'layers/tiled_layer.cc', | 151 'layers/tiled_layer.cc', |
144 'layers/tiled_layer.h', | 152 'layers/tiled_layer.h', |
145 'layers/tiled_layer_impl.cc', | 153 'layers/tiled_layer_impl.cc', |
146 'layers/tiled_layer_impl.h', | 154 'layers/tiled_layer_impl.h', |
147 'layers/video_frame_provider.h', | 155 'layers/video_frame_provider.h', |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 'CC_IMPLEMENTATION=1', | 381 'CC_IMPLEMENTATION=1', |
374 ], | 382 ], |
375 'sources': [ | 383 'sources': [ |
376 '<@(cc_source_files)', | 384 '<@(cc_source_files)', |
377 ], | 385 ], |
378 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 386 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
379 'msvs_disabled_warnings': [ 4267, ], | 387 'msvs_disabled_warnings': [ 4267, ], |
380 }, | 388 }, |
381 ], | 389 ], |
382 } | 390 } |
OLD | NEW |