Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: aura/aura.gyp

Issue 7534002: Shell of implementation for embedded windows. At this point this is (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Incorporate review feedback Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | aura/demo/demo_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « no previous file | aura/demo/demo_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698