OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 'targets': [ |
| 10 { |
| 11 'target_name': 'aura', |
| 12 'type': 'static_library', |
| 13 'dependencies': [ |
| 14 '../base/base.gyp:base', |
| 15 '../base/base.gyp:base_i18n', |
| 16 '../skia/skia.gyp:skia', |
| 17 '../ui/gfx/compositor/compositor.gyp:compositor', |
| 18 '../ui/ui.gyp:gfx_resources', |
| 19 '../ui/ui.gyp:ui', |
| 20 '../ui/ui.gyp:ui_resources', |
| 21 ], |
| 22 'sources': [ |
| 23 'desktop_host.h', |
| 24 'desktop_host_win.cc', |
| 25 'desktop_host_win.h', |
| 26 'desktop.cc', |
| 27 'desktop.h', |
| 28 'window.cc', |
| 29 'window.h', |
| 30 'window_delegate.h', |
| 31 ], |
| 32 }, |
| 33 { |
| 34 'target_name': 'aura_demo', |
| 35 'type': 'executable', |
| 36 'dependencies': [ |
| 37 '../base/base.gyp:base', |
| 38 '../base/base.gyp:base_i18n', |
| 39 '../skia/skia.gyp:skia', |
| 40 '../third_party/icu/icu.gyp:icui18n', |
| 41 '../third_party/icu/icu.gyp:icuuc', |
| 42 '../ui/gfx/compositor/compositor.gyp:compositor', |
| 43 '../ui/ui.gyp:gfx_resources', |
| 44 '../ui/ui.gyp:ui', |
| 45 '../ui/ui.gyp:ui_resources', |
| 46 'aura', |
| 47 ], |
| 48 'include_dirs': [ |
| 49 '..', |
| 50 ], |
| 51 'sources': [ |
| 52 'demo/demo_main.cc', |
| 53 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 54 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 55 ], |
| 56 }, |
| 57 ], |
| 58 } |
OLD | NEW |