OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 | 9 |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'aura_shell', | 12 'target_name': 'aura_shell', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../base/base.gyp:base_i18n', | 16 '../../base/base.gyp:base_i18n', |
17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 17 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
18 '../../build/temp_gyp/googleurl.gyp:googleurl', | 18 '../../build/temp_gyp/googleurl.gyp:googleurl', |
19 '../../net/net.gyp:net', | 19 '../../net/net.gyp:net', |
20 '../../skia/skia.gyp:skia', | 20 '../../skia/skia.gyp:skia', |
21 '../../third_party/icu/icu.gyp:icui18n', | 21 '../../third_party/icu/icu.gyp:icui18n', |
22 '../../third_party/icu/icu.gyp:icuuc', | 22 '../../third_party/icu/icu.gyp:icuuc', |
23 '../base/strings/ui_strings.gyp:ui_strings', | 23 '../base/strings/ui_strings.gyp:ui_strings', |
24 '../gfx/compositor/compositor.gyp:compositor', | 24 '../gfx/compositor/compositor.gyp:compositor', |
25 '../ui.gyp:ui', | 25 '../ui.gyp:ui', |
26 '../ui.gyp:ui_resources', | 26 '../ui.gyp:ui_resources', |
27 '../ui.gyp:ui_resources_standard', | 27 '../ui.gyp:ui_resources_standard', |
| 28 '../aura/aura.gyp:aura', |
28 '../../views/views.gyp:views', | 29 '../../views/views.gyp:views', |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
31 # All .cc, .h under views, except unittests | 32 # All .cc, .h under views, except unittests |
| 33 'desktop_background_view.cc', |
| 34 'desktop_background_view.h', |
| 35 'desktop_layout_manager.cc', |
| 36 'desktop_layout_manager.h', |
| 37 'launcher/launcher_view.cc', |
| 38 'launcher/launcher_view.h', |
| 39 'launcher/launcher_button.cc', |
| 40 'launcher/launcher_button.h', |
| 41 'sample_window.cc', |
| 42 'sample_window.h', |
| 43 'shell_factory.h', |
| 44 'status_area_view.cc', |
| 45 'status_area_view.h', |
32 ], | 46 ], |
33 }, | 47 }, |
34 { | 48 { |
35 'target_name': 'aura_shell_unittests', | 49 'target_name': 'aura_shell_unittests', |
36 'type': 'executable', | 50 'type': 'executable', |
37 'dependencies': [ | 51 'dependencies': [ |
38 '../../base/base.gyp:base', | 52 '../../base/base.gyp:base', |
39 '../../base/base.gyp:test_support_base', | 53 '../../base/base.gyp:test_support_base', |
40 '../../build/temp_gyp/googleurl.gyp:googleurl', | 54 '../../build/temp_gyp/googleurl.gyp:googleurl', |
41 '../../skia/skia.gyp:skia', | 55 '../../skia/skia.gyp:skia', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 ], | 89 ], |
76 'sources': [ | 90 'sources': [ |
77 'aura_shell_main.cc', | 91 'aura_shell_main.cc', |
78 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 92 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
79 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 93 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
80 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', | 94 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources_standard/ui_resources_standa
rd.rc', |
81 ], | 95 ], |
82 }, | 96 }, |
83 ], | 97 ], |
84 } | 98 } |
OLD | NEW |