Index: aura/aura.gyp |
diff --git a/aura/aura.gyp b/aura/aura.gyp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6a555d06f5bf22869abd0df4f0ac630faf8fbf12 |
--- /dev/null |
+++ b/aura/aura.gyp |
@@ -0,0 +1,58 @@ |
+# Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+{ |
+ 'variables': { |
+ 'chromium_code': 1, |
+ }, |
+ 'targets': [ |
+ { |
+ 'target_name': 'aura', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ '../base/base.gyp:base_i18n', |
+ '../skia/skia.gyp:skia', |
+ '../ui/gfx/compositor/compositor.gyp:compositor', |
+ '../ui/ui.gyp:gfx_resources', |
+ '../ui/ui.gyp:ui', |
+ '../ui/ui.gyp:ui_resources', |
+ ], |
+ 'sources': [ |
+ 'desktop_host.h', |
+ 'desktop_host_win.cc', |
+ 'desktop_host_win.h', |
+ 'desktop.cc', |
+ 'desktop.h', |
+ 'window.cc', |
+ 'window.h', |
+ 'window_delegate.h', |
+ ], |
+ }, |
+ { |
+ 'target_name': 'aura_demo', |
+ 'type': 'executable', |
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ '../base/base.gyp:base_i18n', |
+ '../skia/skia.gyp:skia', |
+ '../third_party/icu/icu.gyp:icui18n', |
+ '../third_party/icu/icu.gyp:icuuc', |
+ '../ui/gfx/compositor/compositor.gyp:compositor', |
+ '../ui/ui.gyp:gfx_resources', |
+ '../ui/ui.gyp:ui', |
+ '../ui/ui.gyp:ui_resources', |
+ 'aura', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ 'sources': [ |
+ 'demo/demo_main.cc', |
+ '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
+ '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
+ ], |
+ }, |
+ ], |
+} |