| 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 ], | 227 ], |
| 228 'conditions': [ | 228 'conditions': [ |
| 229 ['use_x11==1', { | 229 ['use_x11==1', { |
| 230 'dependencies': [ | 230 'dependencies': [ |
| 231 '../gfx/x/gfx_x11.gyp:gfx_x11', | 231 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 232 ], | 232 ], |
| 233 }], | 233 }], |
| 234 ] | 234 ] |
| 235 }, | 235 }, |
| 236 { | 236 { |
| 237 'target_name': 'aura_bench', | |
| 238 'type': 'executable', | |
| 239 'dependencies': [ | |
| 240 '../../base/base.gyp:base', | |
| 241 '../../base/base.gyp:base_i18n', | |
| 242 '../../cc/cc.gyp:cc', | |
| 243 '../../gpu/gpu.gyp:gles2_implementation', | |
| 244 '../../skia/skia.gyp:skia', | |
| 245 '../../third_party/icu/icu.gyp:icui18n', | |
| 246 '../../third_party/icu/icu.gyp:icuuc', | |
| 247 '../base/ui_base.gyp:ui_base', | |
| 248 '../compositor/compositor.gyp:compositor', | |
| 249 '../compositor/compositor.gyp:compositor_test_support', | |
| 250 '../events/events.gyp:events', | |
| 251 '../gfx/gfx.gyp:gfx', | |
| 252 '../gfx/gfx.gyp:gfx_geometry', | |
| 253 'aura', | |
| 254 'aura_test_support', | |
| 255 ], | |
| 256 'include_dirs': [ | |
| 257 '..', | |
| 258 ], | |
| 259 'sources': [ | |
| 260 'bench/bench_main.cc', | |
| 261 ], | |
| 262 'conditions': [ | |
| 263 ['use_x11==1', { | |
| 264 'dependencies': [ | |
| 265 '../gfx/x/gfx_x11.gyp:gfx_x11', | |
| 266 ], | |
| 267 }], | |
| 268 ] | |
| 269 }, | |
| 270 { | |
| 271 'target_name': 'aura_unittests', | 237 'target_name': 'aura_unittests', |
| 272 'type': 'executable', | 238 'type': 'executable', |
| 273 'dependencies': [ | 239 'dependencies': [ |
| 274 '../../base/base.gyp:test_support_base', | 240 '../../base/base.gyp:test_support_base', |
| 275 '../../skia/skia.gyp:skia', | 241 '../../skia/skia.gyp:skia', |
| 276 '../../testing/gtest.gyp:gtest', | 242 '../../testing/gtest.gyp:gtest', |
| 277 '../base/ime/ui_base_ime.gyp:ui_base_ime', | 243 '../base/ime/ui_base_ime.gyp:ui_base_ime', |
| 278 '../base/ui_base.gyp:ui_base', | 244 '../base/ui_base.gyp:ui_base', |
| 279 '../base/ui_base.gyp:ui_base_test_support', | 245 '../base/ui_base.gyp:ui_base_test_support', |
| 280 '../compositor/compositor.gyp:compositor', | 246 '../compositor/compositor.gyp:compositor', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 'dependencies': [ | 294 'dependencies': [ |
| 329 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 295 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 330 ], | 296 ], |
| 331 }], | 297 }], |
| 332 ], | 298 ], |
| 333 }, | 299 }, |
| 334 ], | 300 ], |
| 335 }], | 301 }], |
| 336 ], | 302 ], |
| 337 } | 303 } |
| OLD | NEW |