OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 9 'target_defaults': { |
10 'sources/': [ | 10 'sources/': [ |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 ['OS == "win" and views_compositor == 0', { | 84 ['OS == "win" and views_compositor == 0', { |
85 'sources/': [ | 85 'sources/': [ |
86 ['exclude', '^compositor_win.cc'], | 86 ['exclude', '^compositor_win.cc'], |
87 ], | 87 ], |
88 }], | 88 }], |
89 ['use_webkit_compositor == 1', { | 89 ['use_webkit_compositor == 1', { |
90 'sources/': [ | 90 'sources/': [ |
91 ['exclude', '^compositor_(gl|win|stub).(h|cc)$'], | 91 ['exclude', '^compositor_(gl|win|stub).(h|cc)$'], |
92 ], | 92 ], |
93 'dependencies': [ | 93 'dependencies': [ |
94 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', | |
95 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | |
94 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', | 96 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', |
95 ], | 97 ], |
96 }, { | 98 }, { |
97 'sources!': [ | 99 'sources!': [ |
98 'compositor_cc.cc', | 100 'compositor_cc.cc', |
99 'compositor_cc.h', | 101 'compositor_cc.h', |
100 ], | 102 ], |
101 } | 103 } |
102 ], | 104 ], |
103 ], | 105 ], |
104 }, | 106 }, |
105 { | 107 { |
106 'target_name': 'compositor_test_support', | 108 'target_name': 'compositor_test_support', |
107 'type': 'static_library', | 109 'type': 'static_library', |
108 'dependencies': [ | 110 'dependencies': [ |
109 '<(DEPTH)/base/base.gyp:base', | 111 '<(DEPTH)/base/base.gyp:base', |
110 ], | 112 ], |
111 'sources': [ | 113 'sources': [ |
112 'compositor_test_support.cc', | 114 'compositor_test_support.cc', |
113 'compositor_test_support.h', | 115 'compositor_test_support.h', |
114 ], | 116 ], |
115 'conditions': [ | 117 'conditions': [ |
116 ['use_webkit_compositor == 1', { | 118 ['use_webkit_compositor == 1', { |
117 'dependencies': [ | 119 'dependencies': [ |
120 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
oshima
2011/11/17 21:14:20
backer, this is causing problem when building asan
dhollowa
2011/11/17 21:42:28
This should be guarded by the condition 'linux_use
| |
118 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support', | 121 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support', |
119 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit', | 122 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit', |
120 ], | 123 ], |
121 }], | 124 }], |
122 ], | 125 ], |
123 }, | 126 }, |
124 { | 127 { |
125 'target_name': 'compositor_unittests', | 128 'target_name': 'compositor_unittests', |
126 'type': 'executable', | 129 'type': 'executable', |
127 'dependencies': [ | 130 'dependencies': [ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
187 'test_compositor.cc', | 190 'test_compositor.cc', |
188 'test_compositor.h', | 191 'test_compositor.h', |
189 'test_texture.cc', | 192 'test_texture.cc', |
190 'test_texture.h', | 193 'test_texture.h', |
191 ], | 194 ], |
192 }], | 195 }], |
193 ], | 196 ], |
194 }, | 197 }, |
195 ], | 198 ], |
196 } | 199 } |
OLD | NEW |