| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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': [ | 211 'conditions': [ |
| 212 ['use_x11==1', { | 212 ['use_x11==1', { |
| 213 'dependencies': [ | 213 'dependencies': [ |
| 214 '../gfx/gfx.gyp:gfx_x11', | 214 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 215 ], | 215 ], |
| 216 }], | 216 }], |
| 217 ] | 217 ] |
| 218 }, | 218 }, |
| 219 { | 219 { |
| 220 'target_name': 'aura_bench', | 220 'target_name': 'aura_bench', |
| 221 'type': 'executable', | 221 'type': 'executable', |
| 222 'dependencies': [ | 222 'dependencies': [ |
| 223 '../../base/base.gyp:base', | 223 '../../base/base.gyp:base', |
| 224 '../../base/base.gyp:base_i18n', | 224 '../../base/base.gyp:base_i18n', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 237 ], | 237 ], |
| 238 'include_dirs': [ | 238 'include_dirs': [ |
| 239 '..', | 239 '..', |
| 240 ], | 240 ], |
| 241 'sources': [ | 241 'sources': [ |
| 242 'bench/bench_main.cc', | 242 'bench/bench_main.cc', |
| 243 ], | 243 ], |
| 244 'conditions': [ | 244 'conditions': [ |
| 245 ['use_x11==1', { | 245 ['use_x11==1', { |
| 246 'dependencies': [ | 246 'dependencies': [ |
| 247 '../gfx/gfx.gyp:gfx_x11', | 247 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 248 ], | 248 ], |
| 249 }], | 249 }], |
| 250 ] | 250 ] |
| 251 }, | 251 }, |
| 252 { | 252 { |
| 253 'target_name': 'aura_unittests', | 253 'target_name': 'aura_unittests', |
| 254 'type': 'executable', | 254 'type': 'executable', |
| 255 'dependencies': [ | 255 'dependencies': [ |
| 256 '../../base/base.gyp:test_support_base', | 256 '../../base/base.gyp:test_support_base', |
| 257 '../../skia/skia.gyp:skia', | 257 '../../skia/skia.gyp:skia', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 288 ['OS=="linux" and use_allocator!="none"', { | 288 ['OS=="linux" and use_allocator!="none"', { |
| 289 'dependencies': [ | 289 'dependencies': [ |
| 290 # See http://crbug.com/162998#c4 for why this is needed. | 290 # See http://crbug.com/162998#c4 for why this is needed. |
| 291 '../../base/allocator/allocator.gyp:allocator', | 291 '../../base/allocator/allocator.gyp:allocator', |
| 292 ], | 292 ], |
| 293 }], | 293 }], |
| 294 ], | 294 ], |
| 295 }, | 295 }, |
| 296 ], | 296 ], |
| 297 } | 297 } |
| OLD | NEW |