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 'active_animation.cc', | 8 'active_animation.cc', |
9 'active_animation.h', | 9 'active_animation.h', |
10 'animation_curve.cc', | 10 'animation_curve.cc', |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 'priority_calculator.h', | 114 'priority_calculator.h', |
115 'program_binding.cc', | 115 'program_binding.cc', |
116 'program_binding.h', | 116 'program_binding.h', |
117 'proxy.cc', | 117 'proxy.cc', |
118 'proxy.h', | 118 'proxy.h', |
119 'quad_culler.cc', | 119 'quad_culler.cc', |
120 'quad_culler.h', | 120 'quad_culler.h', |
121 'quad_sink.h', | 121 'quad_sink.h', |
122 'rate_limiter.cc', | 122 'rate_limiter.cc', |
123 'rate_limiter.h', | 123 'rate_limiter.h', |
| 124 'region.cc', |
| 125 'region.h', |
124 'render_pass.cc', | 126 'render_pass.cc', |
125 'render_pass.h', | 127 'render_pass.h', |
126 'render_pass_draw_quad.cc', | 128 'render_pass_draw_quad.cc', |
127 'render_pass_draw_quad.h', | 129 'render_pass_draw_quad.h', |
128 'render_pass_sink.h', | 130 'render_pass_sink.h', |
129 'render_surface.cc', | 131 'render_surface.cc', |
130 'render_surface.h', | 132 'render_surface.h', |
131 'render_surface_filters.cc', | 133 'render_surface_filters.cc', |
132 'render_surface_filters.h', | 134 'render_surface_filters.h', |
133 'render_surface_impl.cc', | 135 'render_surface_impl.cc', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 ], | 252 ], |
251 'defines': [ | 253 'defines': [ |
252 'CC_IMPLEMENTATION=1', | 254 'CC_IMPLEMENTATION=1', |
253 ], | 255 ], |
254 'include_dirs': [ | 256 'include_dirs': [ |
255 '<(webkit_src_dir)/Source/Platform/chromium', | 257 '<(webkit_src_dir)/Source/Platform/chromium', |
256 '<@(cc_stubs_dirs)', | 258 '<@(cc_stubs_dirs)', |
257 ], | 259 ], |
258 'sources': [ | 260 'sources': [ |
259 '<@(cc_source_files)', | 261 '<@(cc_source_files)', |
260 'stubs/Region.h', | |
261 'stubs/UnitBezier.h', | 262 'stubs/UnitBezier.h', |
262 | 263 |
263 'stubs/config.h', | 264 'stubs/config.h', |
264 'stubs/unit_bezier.h', | 265 'stubs/unit_bezier.h', |
265 ], | 266 ], |
266 }, | 267 }, |
267 ], | 268 ], |
268 } | 269 } |
OLD | NEW |