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 25 matching lines...) Expand all Loading... |
36 'web_transform_operations_impl.h', | 36 'web_transform_operations_impl.h', |
37 'web_transform_animation_curve_impl.cc', | 37 'web_transform_animation_curve_impl.cc', |
38 'web_transform_animation_curve_impl.h', | 38 'web_transform_animation_curve_impl.h', |
39 ], | 39 ], |
40 }, | 40 }, |
41 'targets': [ | 41 'targets': [ |
42 { | 42 { |
43 'target_name': 'webkit_compositor_support', | 43 'target_name': 'webkit_compositor_support', |
44 'type': 'static_library', | 44 'type': 'static_library', |
45 'dependencies': [ | 45 'dependencies': [ |
46 '../../skia/skia.gyp:skia', | 46 '<(DEPTH)/skia/skia.gyp:skia', |
47 '../../cc/cc.gyp:cc', | 47 '<(DEPTH)/cc/cc.gyp:cc', |
48 'webkit_compositor_bindings', | 48 'webkit_compositor_bindings', |
49 ], | 49 ], |
50 'sources': [ | 50 'sources': [ |
51 'web_compositor_support_impl.cc', | 51 'web_compositor_support_impl.cc', |
52 'web_compositor_support_impl.h', | 52 'web_compositor_support_impl.h', |
53 ], | 53 ], |
54 'include_dirs': [ | 54 'include_dirs': [ |
55 '../..', | 55 '../..', |
56 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 56 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
57 ], | 57 ], |
58 }, | 58 }, |
59 { | 59 { |
60 'target_name': 'webkit_compositor_bindings', | 60 'target_name': 'webkit_compositor_bindings', |
61 'type': '<(component)', | 61 'type': '<(component)', |
62 'dependencies': [ | 62 'dependencies': [ |
63 '../../base/base.gyp:base', | 63 '<(DEPTH)/base/base.gyp:base', |
64 '../../cc/cc.gyp:cc', | 64 '<(DEPTH)/cc/cc.gyp:cc', |
65 '../../gpu/gpu.gyp:gpu', | 65 '<(DEPTH)/gpu/gpu.gyp:gpu', |
66 '../../media/media.gyp:media', | 66 '<(DEPTH)/media/media.gyp:media', |
67 '../../skia/skia.gyp:skia', | 67 '<(DEPTH)/skia/skia.gyp:skia', |
68 '../../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 68 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
69 '../../ui/ui.gyp:ui', | 69 '<(DEPTH)/ui/ui.gyp:ui', |
70 '../../webkit/gpu/webkit_gpu.gyp:webkit_gpu', | 70 '<(DEPTH)/webkit/gpu/webkit_gpu.gyp:webkit_gpu', |
71 ], | 71 ], |
72 'sources': [ | 72 'sources': [ |
73 '<@(webkit_compositor_bindings_sources)', | 73 '<@(webkit_compositor_bindings_sources)', |
74 ], | 74 ], |
75 'defines': [ | 75 'defines': [ |
76 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' | 76 'WEBKIT_COMPOSITOR_BINDINGS_IMPLEMENTATION=1' |
77 ] | 77 ] |
78 }, | 78 }, |
79 ], | 79 ], |
80 } | 80 } |
OLD | NEW |