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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
112 'type': 'static_library', | 112 'type': 'static_library', |
113 'dependencies': [ | 113 'dependencies': [ |
114 '<(DEPTH)/base/base.gyp:base', | 114 '<(DEPTH)/base/base.gyp:base', |
115 ], | 115 ], |
116 'sources': [ | 116 'sources': [ |
117 'compositor_test_support.cc', | 117 'compositor_test_support.cc', |
118 'compositor_test_support.h', | 118 'compositor_test_support.h', |
119 ], | 119 ], |
120 'conditions': [ | 120 'conditions': [ |
121 ['use_webkit_compositor == 1', { | 121 ['use_webkit_compositor == 1', { |
122 'dependencies': [ | 122 'dependencies': [ |
oshima
2011/11/17 22:22:31
can you fix indent here?
dhollowa
2011/11/17 22:28:23
Done.
| |
123 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
124 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support', | 123 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support', |
125 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit', | 124 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:web kit', |
126 ], | 125 ], |
127 }], | 126 }], |
127 ['os_posix == 1 and OS != "mac"', { | |
oshima
2011/11/17 22:22:31
It's a bit strange to be nested (could have just b
dhollowa
2011/11/17 22:28:23
Yes. I followed the pattern.
| |
128 'conditions': [ | |
129 ['linux_use_tcmalloc==1', { | |
130 'dependencies': [ | |
131 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | |
132 ], | |
133 }], | |
134 ], | |
135 }], | |
128 ], | 136 ], |
129 }, | 137 }, |
130 { | 138 { |
131 'target_name': 'compositor_unittests', | 139 'target_name': 'compositor_unittests', |
132 'type': 'executable', | 140 'type': 'executable', |
133 'dependencies': [ | 141 'dependencies': [ |
134 '<(DEPTH)/base/base.gyp:base', | 142 '<(DEPTH)/base/base.gyp:base', |
135 '<(DEPTH)/base/base.gyp:test_support_base', | 143 '<(DEPTH)/base/base.gyp:test_support_base', |
136 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', | 144 '<(DEPTH)/chrome/chrome_resources.gyp:packed_resources', |
137 '<(DEPTH)/skia/skia.gyp:skia', | 145 '<(DEPTH)/skia/skia.gyp:skia', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
195 'test_compositor.cc', | 203 'test_compositor.cc', |
196 'test_compositor.h', | 204 'test_compositor.h', |
197 'test_texture.cc', | 205 'test_texture.cc', |
198 'test_texture.h', | 206 'test_texture.h', |
199 ], | 207 ], |
200 }], | 208 }], |
201 ], | 209 ], |
202 }, | 210 }, |
203 ], | 211 ], |
204 } | 212 } |
OLD | NEW |