| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'webkit_compositor_support', | |
| 12 'type': 'static_library', | |
| 13 'dependencies': [ | |
| 14 '<(DEPTH)/skia/skia.gyp:skia', | |
| 15 '<(DEPTH)/cc/cc.gyp:cc', | |
| 16 'webkit_compositor_bindings', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'web_compositor_support_impl.cc', | |
| 20 'web_compositor_support_impl.h', | |
| 21 ], | |
| 22 'include_dirs': [ | |
| 23 '../..', | |
| 24 '<(SHARED_INTERMEDIATE_DIR)/webkit', | |
| 25 ], | |
| 26 }, | |
| 27 { | |
| 28 'target_name': 'webkit_compositor_bindings', | |
| 29 'type': '<(component)', | |
| 30 'dependencies': [ | |
| 31 '<(DEPTH)/base/base.gyp:base', | |
| 32 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | |
| 33 '<(DEPTH)/cc/cc.gyp:cc', | |
| 34 '<(DEPTH)/gpu/gpu.gyp:gpu', | |
| 35 '<(DEPTH)/media/media.gyp:media', | |
| 36 '<(DEPTH)/skia/skia.gyp:skia', | |
| 37 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | |
| 38 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | |
| 39 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', | |
| 40 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | |
| 41 ], | |
| 42 'defines': [ | |
| 43 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | |
| 44 ], | |
| 45 'sources': [ | |
| 46 'scrollbar_impl.cc', | |
| 47 'scrollbar_impl.h', | |
| 48 'web_animation_curve_common.cc', | |
| 49 'web_animation_curve_common.h', | |
| 50 'web_animation_impl.cc', | |
| 51 'web_animation_impl.h', | |
| 52 'web_content_layer_impl.cc', | |
| 53 'web_content_layer_impl.h', | |
| 54 'web_external_bitmap_impl.cc', | |
| 55 'web_external_bitmap_impl.h', | |
| 56 'web_external_texture_layer_impl.cc', | |
| 57 'web_external_texture_layer_impl.h', | |
| 58 'web_filter_animation_curve_impl.cc', | |
| 59 'web_filter_animation_curve_impl.h', | |
| 60 'web_filter_operations_impl.cc', | |
| 61 'web_filter_operations_impl.h', | |
| 62 'web_float_animation_curve_impl.cc', | |
| 63 'web_float_animation_curve_impl.h', | |
| 64 'web_image_layer_impl.cc', | |
| 65 'web_image_layer_impl.h', | |
| 66 'web_layer_impl.cc', | |
| 67 'web_layer_impl.h', | |
| 68 'web_layer_impl_fixed_bounds.cc', | |
| 69 'web_layer_impl_fixed_bounds.h', | |
| 70 'web_nine_patch_layer_impl.cc', | |
| 71 'web_nine_patch_layer_impl.h', | |
| 72 'web_scroll_offset_animation_curve_impl.cc', | |
| 73 'web_scroll_offset_animation_curve_impl.h', | |
| 74 'web_scrollbar_layer_impl.cc', | |
| 75 'web_scrollbar_layer_impl.h', | |
| 76 'web_solid_color_layer_impl.cc', | |
| 77 'web_solid_color_layer_impl.h', | |
| 78 'web_to_cc_animation_delegate_adapter.cc', | |
| 79 'web_to_cc_animation_delegate_adapter.h', | |
| 80 'web_transform_animation_curve_impl.cc', | |
| 81 'web_transform_animation_curve_impl.h', | |
| 82 'web_transform_operations_impl.cc', | |
| 83 'web_transform_operations_impl.h', | |
| 84 ], | |
| 85 }, | |
| 86 ], | |
| 87 } | |
| OLD | NEW |