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 'aura_switches.cc', | 26 'aura_switches.cc', |
27 'aura_switches.h', | 27 'aura_switches.h', |
28 'client/aura_constants.cc', | 28 'client/aura_constants.cc', |
29 'client/aura_constants.h', | 29 'client/aura_constants.h', |
| 30 'client/drag_drop_client.h', |
30 'client/stacking_client.h', | 31 'client/stacking_client.h', |
| 32 'client/window_drag_drop_delegate.h', |
31 'cursor.h', | 33 'cursor.h', |
32 'desktop_host.h', | 34 'desktop_host.h', |
33 'desktop_host_linux.cc', | 35 'desktop_host_linux.cc', |
34 'desktop_host_win.cc', | 36 'desktop_host_win.cc', |
35 'desktop_host_win.h', | 37 'desktop_host_win.h', |
36 'desktop.cc', | 38 'desktop.cc', |
37 'desktop.h', | 39 'desktop.h', |
38 'event.cc', | 40 'event.cc', |
39 'event.h', | 41 'event.h', |
40 'event_filter.cc', | 42 'event_filter.cc', |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 'conditions': [ | 140 'conditions': [ |
139 ['OS=="linux"', { | 141 ['OS=="linux"', { |
140 'dependencies': [ | 142 'dependencies': [ |
141 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 143 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
142 ], | 144 ], |
143 }], | 145 }], |
144 ], | 146 ], |
145 }, | 147 }, |
146 ], | 148 ], |
147 } | 149 } |
OLD | NEW |