| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 'include_dirs': [ | 215 'include_dirs': [ |
| 216 '..', | 216 '..', |
| 217 ], | 217 ], |
| 218 'sources': [ | 218 'sources': [ |
| 219 'demo/demo_main.cc', | 219 'demo/demo_main.cc', |
| 220 '<(SHARED_INTERMEDIATE_DIR)/ui/native_theme/native_theme_resources.rc', | 220 '<(SHARED_INTERMEDIATE_DIR)/ui/native_theme/native_theme_resources.rc', |
| 221 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 221 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 222 ], | 222 ], |
| 223 }, | 223 }, |
| 224 { | 224 { |
| 225 'target_name': 'aura_bench', |
| 226 'type': 'executable', |
| 227 'dependencies': [ |
| 228 '../../base/base.gyp:base', |
| 229 '../../base/base.gyp:base_i18n', |
| 230 '../../skia/skia.gyp:skia', |
| 231 '../../third_party/icu/icu.gyp:icui18n', |
| 232 '../../third_party/icu/icu.gyp:icuuc', |
| 233 '../compositor/compositor.gyp:compositor', |
| 234 '../compositor/compositor.gyp:compositor_test_support', |
| 235 '../ui.gyp:native_theme_resources', |
| 236 '../ui.gyp:ui', |
| 237 '../ui.gyp:ui_resources', |
| 238 'aura', |
| 239 ], |
| 240 'include_dirs': [ |
| 241 '..', |
| 242 ], |
| 243 'sources': [ |
| 244 'bench/bench_main.cc', |
| 245 '<(SHARED_INTERMEDIATE_DIR)/ui/native_theme/native_theme_resources.rc', |
| 246 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 247 ], |
| 248 }, |
| 249 { |
| 225 'target_name': 'aura_unittests', | 250 'target_name': 'aura_unittests', |
| 226 'type': 'executable', | 251 'type': 'executable', |
| 227 'dependencies': [ | 252 'dependencies': [ |
| 228 '../../base/base.gyp:test_support_base', | 253 '../../base/base.gyp:test_support_base', |
| 229 '../../chrome/chrome_resources.gyp:packed_resources', | 254 '../../chrome/chrome_resources.gyp:packed_resources', |
| 230 '../../skia/skia.gyp:skia', | 255 '../../skia/skia.gyp:skia', |
| 231 '../../testing/gtest.gyp:gtest', | 256 '../../testing/gtest.gyp:gtest', |
| 232 '../compositor/compositor.gyp:compositor_test_support', | 257 '../compositor/compositor.gyp:compositor_test_support', |
| 233 '../compositor/compositor.gyp:compositor', | 258 '../compositor/compositor.gyp:compositor', |
| 234 '../gl/gl.gyp:gl', | 259 '../gl/gl.gyp:gl', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 259 # osmesa GL implementation is used on linux. | 284 # osmesa GL implementation is used on linux. |
| 260 ['OS=="linux"', { | 285 ['OS=="linux"', { |
| 261 'dependencies': [ | 286 'dependencies': [ |
| 262 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 287 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 263 ], | 288 ], |
| 264 }], | 289 }], |
| 265 ], | 290 ], |
| 266 }, | 291 }, |
| 267 ], | 292 ], |
| 268 } | 293 } |
| OLD | NEW |