| 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 'webkit_compositor_bindings_sources': [ | 8 'webkit_compositor_bindings_sources': [ |
| 9 'web_animation_curve_common.cc', | 9 'web_animation_curve_common.cc', |
| 10 'web_animation_curve_common.h', | 10 'web_animation_curve_common.h', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 '../..', | 62 '../..', |
| 63 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 63 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 64 ], | 64 ], |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 'target_name': 'webkit_compositor_bindings', | 67 'target_name': 'webkit_compositor_bindings', |
| 68 'type': '<(component)', | 68 'type': '<(component)', |
| 69 'dependencies': [ | 69 'dependencies': [ |
| 70 '../../base/base.gyp:base', | 70 '../../base/base.gyp:base', |
| 71 '../../cc/cc.gyp:cc', | 71 '../../cc/cc.gyp:cc', |
| 72 '../../gpu/gpu.gyp:gpu', |
| 72 '../../media/media.gyp:media', | 73 '../../media/media.gyp:media', |
| 73 '../../skia/skia.gyp:skia', | 74 '../../skia/skia.gyp:skia', |
| 74 '../../ui/ui.gyp:ui', | 75 '../../ui/ui.gyp:ui', |
| 75 '../../webkit/gpu/webkit_gpu.gyp:webkit_gpu', | 76 '../../webkit/gpu/webkit_gpu.gyp:webkit_gpu', |
| 76 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 77 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 77 ], | 78 ], |
| 78 'sources': [ | 79 'sources': [ |
| 79 '<@(webkit_compositor_bindings_sources)', | 80 '<@(webkit_compositor_bindings_sources)', |
| 80 ], | 81 ], |
| 81 'defines': [ | 82 'defines': [ |
| 82 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 83 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
| 83 ] | 84 ] |
| 84 }, | 85 }, |
| 85 ], | 86 ], |
| 86 } | 87 } |
| OLD | NEW |