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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'aura', | 11 'target_name': 'aura', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
16 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
17 '../gfx/compositor/compositor.gyp:compositor', | 17 '../gfx/compositor/compositor.gyp:compositor', |
18 '../ui.gyp:gfx_resources', | 18 '../ui.gyp:gfx_resources', |
19 '../ui.gyp:ui', | 19 '../ui.gyp:ui', |
20 '../ui.gyp:ui_resources', | 20 '../ui.gyp:ui_resources', |
21 ], | 21 ], |
22 'defines': [ | 22 'defines': [ |
23 'AURA_IMPLEMENTATION', | 23 'AURA_IMPLEMENTATION', |
24 ], | 24 ], |
25 'sources': [ | 25 'sources': [ |
| 26 'cursor.h', |
26 'desktop_host.h', | 27 'desktop_host.h', |
27 'desktop_host_linux.cc', | 28 'desktop_host_linux.cc', |
28 'desktop_host_win.cc', | 29 'desktop_host_win.cc', |
29 'desktop_host_win.h', | 30 'desktop_host_win.h', |
30 'desktop.cc', | 31 'desktop.cc', |
31 'desktop.h', | 32 'desktop.h', |
32 'event.cc', | 33 'event.cc', |
33 'event.h', | 34 'event.h', |
34 'event_filter.cc', | 35 'event_filter.cc', |
35 'event_filter.h', | 36 'event_filter.h', |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 'window_unittest.cc', | 95 'window_unittest.cc', |
95 'run_all_unittests.cc', | 96 'run_all_unittests.cc', |
96 'test_suite.cc', | 97 'test_suite.cc', |
97 'test_suite.h', | 98 'test_suite.h', |
98 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 99 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
99 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 100 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
100 ], | 101 ], |
101 }, | 102 }, |
102 ], | 103 ], |
103 } | 104 } |
OLD | NEW |