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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 'priority_calculator.h', | 120 'priority_calculator.h', |
121 'program_binding.cc', | 121 'program_binding.cc', |
122 'program_binding.h', | 122 'program_binding.h', |
123 'proxy.cc', | 123 'proxy.cc', |
124 'proxy.h', | 124 'proxy.h', |
125 'quad_culler.cc', | 125 'quad_culler.cc', |
126 'quad_culler.h', | 126 'quad_culler.h', |
127 'quad_sink.h', | 127 'quad_sink.h', |
128 'rate_limiter.cc', | 128 'rate_limiter.cc', |
129 'rate_limiter.h', | 129 'rate_limiter.h', |
| 130 'region.cc', |
| 131 'region.h', |
130 'render_pass.cc', | 132 'render_pass.cc', |
131 'render_pass.h', | 133 'render_pass.h', |
132 'render_pass_draw_quad.cc', | 134 'render_pass_draw_quad.cc', |
133 'render_pass_draw_quad.h', | 135 'render_pass_draw_quad.h', |
134 'render_pass_sink.h', | 136 'render_pass_sink.h', |
135 'render_surface.cc', | 137 'render_surface.cc', |
136 'render_surface.h', | 138 'render_surface.h', |
137 'render_surface_filters.cc', | 139 'render_surface_filters.cc', |
138 'render_surface_filters.h', | 140 'render_surface_filters.h', |
139 'render_surface_impl.cc', | 141 'render_surface_impl.cc', |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 ], | 258 ], |
257 'defines': [ | 259 'defines': [ |
258 'CC_IMPLEMENTATION=1', | 260 'CC_IMPLEMENTATION=1', |
259 ], | 261 ], |
260 'include_dirs': [ | 262 'include_dirs': [ |
261 '<(webkit_src_dir)/Source/Platform/chromium', | 263 '<(webkit_src_dir)/Source/Platform/chromium', |
262 '<@(cc_stubs_dirs)', | 264 '<@(cc_stubs_dirs)', |
263 ], | 265 ], |
264 'sources': [ | 266 'sources': [ |
265 '<@(cc_source_files)', | 267 '<@(cc_source_files)', |
266 'stubs/Region.h', | |
267 | |
268 'stubs/config.h', | 268 'stubs/config.h', |
269 ], | 269 ], |
270 }, | 270 }, |
271 ], | 271 ], |
272 } | 272 } |
OLD | NEW |