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