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 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 'video_layer.h', | 224 'video_layer.h', |
225 'video_layer_impl.cc', | 225 'video_layer_impl.cc', |
226 'video_layer_impl.h', | 226 'video_layer_impl.h', |
227 'yuv_video_draw_quad.cc', | 227 'yuv_video_draw_quad.cc', |
228 'yuv_video_draw_quad.h', | 228 'yuv_video_draw_quad.h', |
229 ], | 229 ], |
230 }, | 230 }, |
231 'targets': [ | 231 'targets': [ |
232 { | 232 { |
233 'target_name': 'cc', | 233 'target_name': 'cc', |
234 'type': 'static_library', | 234 'type': '<(component)', |
235 'includes': [ | 235 'includes': [ |
236 'cc.gypi', | 236 'cc.gypi', |
237 ], | 237 ], |
238 'dependencies': [ | 238 'dependencies': [ |
239 '<(DEPTH)/base/base.gyp:base', | 239 '<(DEPTH)/base/base.gyp:base', |
240 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 240 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
241 '<(DEPTH)/skia/skia.gyp:skia', | 241 '<(DEPTH)/skia/skia.gyp:skia', |
242 '<(DEPTH)/media/media.gyp:media', | 242 '<(DEPTH)/media/media.gyp:media', |
243 '<(DEPTH)/ui/gl/gl.gyp:gl', | 243 '<(DEPTH)/ui/gl/gl.gyp:gl', |
244 '<(DEPTH)/ui/ui.gyp:ui', | 244 '<(DEPTH)/ui/ui.gyp:ui', |
245 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 245 '<(webkit_src_dir)/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
246 '<(webkit_src_dir)/Source/WebCore/WebCore.gyp/WebCore.gyp:webcore_platfo
rm_geometry', | 246 '<(webkit_src_dir)/Source/WebCore/WebCore.gyp/WebCore.gyp:webcore_platfo
rm_geometry', |
247 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_support'
, | 247 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit_wtf_support'
, |
| 248 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
248 ], | 249 ], |
249 'defines': [ | 250 'defines': [ |
250 # http://crbug.com/154052 | 251 'CC_IMPLEMENTATION=1', |
251 'WEBKIT_GLUE_IMPLEMENTATION=1', | |
252 ], | 252 ], |
253 'include_dirs': [ | 253 'include_dirs': [ |
254 '<(webkit_src_dir)/Source/Platform/chromium', | 254 '<(webkit_src_dir)/Source/Platform/chromium', |
255 '<@(cc_stubs_dirs)', | 255 '<@(cc_stubs_dirs)', |
256 ], | 256 ], |
257 'sources': [ | 257 'sources': [ |
258 '<@(cc_source_files)', | 258 '<@(cc_source_files)', |
259 'stubs/FloatPoint.h', | 259 'stubs/FloatPoint.h', |
260 'stubs/FloatQuad.h', | 260 'stubs/FloatQuad.h', |
261 'stubs/FloatRect.h', | 261 'stubs/FloatRect.h', |
(...skipping 12 matching lines...) Expand all Loading... |
274 'stubs/float_size.h', | 274 'stubs/float_size.h', |
275 'stubs/int_point.h', | 275 'stubs/int_point.h', |
276 'stubs/int_rect.h', | 276 'stubs/int_rect.h', |
277 'stubs/int_size.h', | 277 'stubs/int_size.h', |
278 'stubs/skia_utils.h', | 278 'stubs/skia_utils.h', |
279 'stubs/unit_bezier.h', | 279 'stubs/unit_bezier.h', |
280 ], | 280 ], |
281 }, | 281 }, |
282 ], | 282 ], |
283 } | 283 } |
OLD | NEW |