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 'webkit_compositor_bindings_sources': [ | 7 'webkit_compositor_bindings_sources': [ |
8 'web_animation_curve_common.cc', | 8 'web_animation_curve_common.cc', |
9 'web_animation_curve_common.h', | 9 'web_animation_curve_common.h', |
10 'web_animation_id_provider.cc', | 10 'web_animation_id_provider.cc', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'target_name': 'webkit_compositor_support', | 52 'target_name': 'webkit_compositor_support', |
53 'type': 'static_library', | 53 'type': 'static_library', |
54 'dependencies': [ | 54 'dependencies': [ |
55 '../../skia/skia.gyp:skia', | 55 '../../skia/skia.gyp:skia', |
56 'webkit_compositor_bindings', | 56 'webkit_compositor_bindings', |
57 ], | 57 ], |
58 'sources': [ | 58 'sources': [ |
59 'web_compositor_support_impl.cc', | 59 'web_compositor_support_impl.cc', |
60 'web_compositor_support_impl.h', | 60 'web_compositor_support_impl.h', |
61 ], | 61 ], |
62 'includes': [ | |
63 '../../cc/cc.gypi', | |
64 ], | |
65 'include_dirs': [ | 62 'include_dirs': [ |
66 '../..', | 63 '../..', |
67 '../../cc', | |
68 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 64 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
69 '<(webkit_src_dir)/Source/Platform/chromium', | |
70 '<@(cc_stubs_dirs)', | |
71 ], | 65 ], |
72 }, | 66 }, |
73 { | 67 { |
74 'target_name': 'webkit_compositor_bindings', | 68 'target_name': 'webkit_compositor_bindings', |
75 'type': 'static_library', | 69 'type': 'static_library', |
76 'includes': [ | |
77 '../../cc/cc.gypi', | |
78 ], | |
79 'dependencies': [ | 70 'dependencies': [ |
80 '../../base/base.gyp:base', | 71 '../../base/base.gyp:base', |
81 '../../cc/cc.gyp:cc', | 72 '../../cc/cc.gyp:cc', |
82 '../../skia/skia.gyp:skia', | 73 '../../skia/skia.gyp:skia', |
83 '../../ui/ui.gyp:ui', | 74 '../../ui/ui.gyp:ui', |
84 ], | 75 ], |
85 'include_dirs': [ | |
86 '../../cc', | |
87 '<@(cc_stubs_dirs)', | |
88 '<(webkit_src_dir)/Source/Platform/chromium', | |
89 ], | |
90 'sources': [ | 76 'sources': [ |
91 '<@(webkit_compositor_bindings_sources)', | 77 '<@(webkit_compositor_bindings_sources)', |
92 ], | 78 ], |
93 }, | 79 }, |
94 ], | 80 ], |
95 } | 81 } |
OLD | NEW |