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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 '../gfx/gfx.gyp:gfx_geometry', | 201 '../gfx/gfx.gyp:gfx_geometry', |
202 'aura', | 202 'aura', |
203 'aura_test_support', | 203 'aura_test_support', |
204 ], | 204 ], |
205 'include_dirs': [ | 205 'include_dirs': [ |
206 '..', | 206 '..', |
207 ], | 207 ], |
208 'sources': [ | 208 'sources': [ |
209 'demo/demo_main.cc', | 209 'demo/demo_main.cc', |
210 ], | 210 ], |
| 211 'conditions': [ |
| 212 ['use_x11==1', { |
| 213 'dependencies': [ |
| 214 '../gfx/gfx.gyp:gfx_x11', |
| 215 ], |
| 216 }], |
| 217 ] |
211 }, | 218 }, |
212 { | 219 { |
213 'target_name': 'aura_bench', | 220 'target_name': 'aura_bench', |
214 'type': 'executable', | 221 'type': 'executable', |
215 'dependencies': [ | 222 'dependencies': [ |
216 '../../base/base.gyp:base', | 223 '../../base/base.gyp:base', |
217 '../../base/base.gyp:base_i18n', | 224 '../../base/base.gyp:base_i18n', |
218 '../../cc/cc.gyp:cc', | 225 '../../cc/cc.gyp:cc', |
219 '../../skia/skia.gyp:skia', | 226 '../../skia/skia.gyp:skia', |
220 '../../third_party/icu/icu.gyp:icui18n', | 227 '../../third_party/icu/icu.gyp:icui18n', |
221 '../../third_party/icu/icu.gyp:icuuc', | 228 '../../third_party/icu/icu.gyp:icuuc', |
222 '../base/ui_base.gyp:ui_base', | 229 '../base/ui_base.gyp:ui_base', |
223 '../compositor/compositor.gyp:compositor', | 230 '../compositor/compositor.gyp:compositor', |
224 '../compositor/compositor.gyp:compositor_test_support', | 231 '../compositor/compositor.gyp:compositor_test_support', |
225 '../events/events.gyp:events', | 232 '../events/events.gyp:events', |
226 '../gfx/gfx.gyp:gfx', | 233 '../gfx/gfx.gyp:gfx', |
227 '../gfx/gfx.gyp:gfx_geometry', | 234 '../gfx/gfx.gyp:gfx_geometry', |
228 'aura', | 235 'aura', |
229 'aura_test_support', | 236 'aura_test_support', |
230 ], | 237 ], |
231 'include_dirs': [ | 238 'include_dirs': [ |
232 '..', | 239 '..', |
233 ], | 240 ], |
234 'sources': [ | 241 'sources': [ |
235 'bench/bench_main.cc', | 242 'bench/bench_main.cc', |
236 ], | 243 ], |
| 244 'conditions': [ |
| 245 ['use_x11==1', { |
| 246 'dependencies': [ |
| 247 '../gfx/gfx.gyp:gfx_x11', |
| 248 ], |
| 249 }], |
| 250 ] |
237 }, | 251 }, |
238 { | 252 { |
239 'target_name': 'aura_unittests', | 253 'target_name': 'aura_unittests', |
240 'type': 'executable', | 254 'type': 'executable', |
241 'dependencies': [ | 255 'dependencies': [ |
242 '../../base/base.gyp:test_support_base', | 256 '../../base/base.gyp:test_support_base', |
243 '../../skia/skia.gyp:skia', | 257 '../../skia/skia.gyp:skia', |
244 '../../testing/gtest.gyp:gtest', | 258 '../../testing/gtest.gyp:gtest', |
245 '../base/ui_base.gyp:ui_base', | 259 '../base/ui_base.gyp:ui_base', |
246 '../compositor/compositor.gyp:compositor', | 260 '../compositor/compositor.gyp:compositor', |
(...skipping 28 matching lines...) Expand all Loading... |
275 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { | 289 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { |
276 'dependencies': [ | 290 'dependencies': [ |
277 # See http://crbug.com/162998#c4 for why this is needed. | 291 # See http://crbug.com/162998#c4 for why this is needed. |
278 '../../base/allocator/allocator.gyp:allocator', | 292 '../../base/allocator/allocator.gyp:allocator', |
279 ], | 293 ], |
280 }], | 294 }], |
281 ], | 295 ], |
282 }, | 296 }, |
283 ], | 297 ], |
284 } | 298 } |
OLD | NEW |