| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 { | 27 { |
| 28 'target_name': 'webkit_compositor_bindings', | 28 'target_name': 'webkit_compositor_bindings', |
| 29 'type': '<(component)', | 29 'type': '<(component)', |
| 30 'dependencies': [ | 30 'dependencies': [ |
| 31 '<(DEPTH)/base/base.gyp:base', | 31 '<(DEPTH)/base/base.gyp:base', |
| 32 '<(DEPTH)/cc/cc.gyp:cc', | 32 '<(DEPTH)/cc/cc.gyp:cc', |
| 33 '<(DEPTH)/gpu/gpu.gyp:gpu', | 33 '<(DEPTH)/gpu/gpu.gyp:gpu', |
| 34 '<(DEPTH)/media/media.gyp:media', | 34 '<(DEPTH)/media/media.gyp:media', |
| 35 '<(DEPTH)/skia/skia.gyp:skia', | 35 '<(DEPTH)/skia/skia.gyp:skia', |
| 36 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 36 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| 37 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
| 37 '<(DEPTH)/ui/ui.gyp:ui', | 38 '<(DEPTH)/ui/ui.gyp:ui', |
| 38 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 39 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 39 ], | 40 ], |
| 40 'defines': [ | 41 'defines': [ |
| 41 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 42 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
| 42 ], | 43 ], |
| 43 'sources': [ | 44 'sources': [ |
| 44 'scrollbar_impl.cc', | 45 'scrollbar_impl.cc', |
| 45 'scrollbar_impl.h', | 46 'scrollbar_impl.h', |
| 46 'web_animation_curve_common.cc', | 47 'web_animation_curve_common.cc', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 73 'web_to_cc_animation_delegate_adapter.cc', | 74 'web_to_cc_animation_delegate_adapter.cc', |
| 74 'web_to_cc_animation_delegate_adapter.h', | 75 'web_to_cc_animation_delegate_adapter.h', |
| 75 'web_transform_animation_curve_impl.cc', | 76 'web_transform_animation_curve_impl.cc', |
| 76 'web_transform_animation_curve_impl.h', | 77 'web_transform_animation_curve_impl.h', |
| 77 'web_transform_operations_impl.cc', | 78 'web_transform_operations_impl.cc', |
| 78 'web_transform_operations_impl.h', | 79 'web_transform_operations_impl.h', |
| 79 ], | 80 ], |
| 80 }, | 81 }, |
| 81 ], | 82 ], |
| 82 } | 83 } |
| OLD | NEW |