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 'animation.cc', | 8 'animation.cc', |
9 'animation.h', | 9 'animation.h', |
10 'animation_curve.cc', | 10 'animation_curve.cc', |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 'scrollbar_layer_impl.h', | 240 'scrollbar_layer_impl.h', |
241 'scrollbar_layer_impl_base.h', | 241 'scrollbar_layer_impl_base.h', |
242 'shader.cc', | 242 'shader.cc', |
243 'shader.h', | 243 'shader.h', |
244 'shared_quad_state.cc', | 244 'shared_quad_state.cc', |
245 'shared_quad_state.h', | 245 'shared_quad_state.h', |
246 'single_thread_proxy.cc', | 246 'single_thread_proxy.cc', |
247 'single_thread_proxy.h', | 247 'single_thread_proxy.h', |
248 'skpicture_content_layer_updater.cc', | 248 'skpicture_content_layer_updater.cc', |
249 'skpicture_content_layer_updater.h', | 249 'skpicture_content_layer_updater.h', |
| 250 'software_frame_data.cc', |
| 251 'software_frame_data.h', |
| 252 'software_output_device.cc', |
250 'software_output_device.h', | 253 'software_output_device.h', |
251 'software_renderer.cc', | 254 'software_renderer.cc', |
252 'software_renderer.h', | 255 'software_renderer.h', |
253 'solid_color_draw_quad.cc', | 256 'solid_color_draw_quad.cc', |
254 'solid_color_draw_quad.h', | 257 'solid_color_draw_quad.h', |
255 'solid_color_layer.cc', | 258 'solid_color_layer.cc', |
256 'solid_color_layer.h', | 259 'solid_color_layer.h', |
257 'solid_color_layer_impl.cc', | 260 'solid_color_layer_impl.cc', |
258 'solid_color_layer_impl.h', | 261 'solid_color_layer_impl.h', |
259 'stream_video_draw_quad.cc', | 262 'stream_video_draw_quad.cc', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 { | 343 { |
341 'target_name': 'cc', | 344 'target_name': 'cc', |
342 'type': '<(component)', | 345 'type': '<(component)', |
343 'dependencies': [ | 346 'dependencies': [ |
344 '<(DEPTH)/base/base.gyp:base', | 347 '<(DEPTH)/base/base.gyp:base', |
345 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 348 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
346 '<(DEPTH)/gpu/gpu.gyp:gpu', | 349 '<(DEPTH)/gpu/gpu.gyp:gpu', |
347 '<(DEPTH)/skia/skia.gyp:skia', | 350 '<(DEPTH)/skia/skia.gyp:skia', |
348 '<(DEPTH)/media/media.gyp:media', | 351 '<(DEPTH)/media/media.gyp:media', |
349 '<(DEPTH)/ui/gl/gl.gyp:gl', | 352 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 353 '<(DEPTH)/ui/surface/surface.gyp:surface', |
350 '<(DEPTH)/ui/ui.gyp:ui', | 354 '<(DEPTH)/ui/ui.gyp:ui', |
351 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 355 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
352 ], | 356 ], |
353 'defines': [ | 357 'defines': [ |
354 'CC_IMPLEMENTATION=1', | 358 'CC_IMPLEMENTATION=1', |
355 ], | 359 ], |
356 'sources': [ | 360 'sources': [ |
357 '<@(cc_source_files)', | 361 '<@(cc_source_files)', |
358 ], | 362 ], |
359 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 363 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
360 'msvs_disabled_warnings': [ 4267, ], | 364 'msvs_disabled_warnings': [ 4267, ], |
361 }, | 365 }, |
362 ], | 366 ], |
363 } | 367 } |
OLD | NEW |