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

Side by Side Diff: ui/aura_shell/aura_shell.gyp

Issue 7890054: Adds code for a new Aura shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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
Property Changes:
Added: svn:eol-style
+ LF
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
10 'targets': [
11 {
12 'target_name': 'aura_shell',
13 'type': '<(component)',
14 'dependencies': [
15 '../../base/base.gyp:base',
16 '../../base/base.gyp:base_i18n',
17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
18 '../../build/temp_gyp/googleurl.gyp:googleurl',
19 '../../net/net.gyp:net',
20 '../../skia/skia.gyp:skia',
21 '../../third_party/icu/icu.gyp:icui18n',
22 '../../third_party/icu/icu.gyp:icuuc',
23 '../base/strings/ui_strings.gyp:ui_strings',
24 '../gfx/compositor/compositor.gyp:compositor',
25 '../ui.gyp:ui',
26 '../ui.gyp:ui_resources',
27 '../ui.gyp:ui_resources_standard',
28 '../../views/views.gyp:views',
29 ],
30 'sources': [
31 # All .cc, .h under views, except unittests
32 'desktop_background_view.cc',
33 'desktop_background_view.h',
34 'desktop_layout_manager.cc',
35 'desktop_layout_manager.h',
36 'launcher_view.cc',
37 'launcher_view.h',
38 'status_area_view.cc',
39 'status_area_view.h',
40 ],
41 },
42 {
43 'target_name': 'aura_shell_unittests',
44 'type': 'executable',
45 'dependencies': [
46 '../../base/base.gyp:base',
47 '../../base/base.gyp:test_support_base',
48 '../../build/temp_gyp/googleurl.gyp:googleurl',
49 '../../skia/skia.gyp:skia',
50 '../../testing/gtest.gyp:gtest',
51 '../../third_party/icu/icu.gyp:icui18n',
52 '../../third_party/icu/icu.gyp:icuuc',
53 '../ui.gyp:gfx_resources',
54 '../ui.gyp:ui',
55 '../ui.gyp:ui_resources',
56 '../ui.gyp:ui_resources_standard',
57 'aura_shell',
58 ],
59 'sources': [
60
61 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
62 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
63 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
64 ],
65 },
66 {
67 'target_name': 'aura_shell_exe',
68 'type': 'executable',
69 'dependencies': [
70 '../../base/base.gyp:base',
71 '../../base/base.gyp:base_i18n',
72 '../../chrome/chrome.gyp:packed_resources',
73 '../../skia/skia.gyp:skia',
74 '../../third_party/icu/icu.gyp:icui18n',
75 '../../third_party/icu/icu.gyp:icuuc',
76 '../../views/views.gyp:views',
77 '../aura/aura.gyp:aura',
78 '../ui.gyp:gfx_resources',
79 '../ui.gyp:ui',
80 '../ui.gyp:ui_resources',
81 '../ui.gyp:ui_resources_standard',
82 'aura_shell',
83 ],
84 'sources': [
85 'aura_shell_main.cc',
86 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
87 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
88 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa rd.rc',
89 ],
90 },
91 ],
92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698