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