| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 ], | 250 ], |
| 251 'defines': [ | 251 'defines': [ |
| 252 'CC_IMPLEMENTATION=1', | 252 'CC_IMPLEMENTATION=1', |
| 253 ], | 253 ], |
| 254 'include_dirs': [ | 254 'include_dirs': [ |
| 255 '<(webkit_src_dir)/Source/Platform/chromium', | 255 '<(webkit_src_dir)/Source/Platform/chromium', |
| 256 '<@(cc_stubs_dirs)', | 256 '<@(cc_stubs_dirs)', |
| 257 ], | 257 ], |
| 258 'sources': [ | 258 'sources': [ |
| 259 '<@(cc_source_files)', | 259 '<@(cc_source_files)', |
| 260 'stubs/FloatPoint.h', | |
| 261 'stubs/FloatSize.h', | |
| 262 'stubs/IntPoint.h', | |
| 263 'stubs/IntSize.h', | |
| 264 'stubs/Region.h', | 260 'stubs/Region.h', |
| 265 'stubs/UnitBezier.h', | 261 'stubs/UnitBezier.h', |
| 266 | 262 |
| 267 'stubs/config.h', | 263 'stubs/config.h', |
| 268 'stubs/float_point.h', | |
| 269 'stubs/float_size.h', | |
| 270 'stubs/int_point.h', | |
| 271 'stubs/int_size.h', | |
| 272 'stubs/unit_bezier.h', | 264 'stubs/unit_bezier.h', |
| 273 ], | 265 ], |
| 274 }, | 266 }, |
| 275 ], | 267 ], |
| 276 } | 268 } |
| OLD | NEW |