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': [ |
(...skipping 25 matching lines...) Expand all Loading... |
36 'default_container_event_filter.cc', | 36 'default_container_event_filter.cc', |
37 'default_container_event_filter.h', | 37 'default_container_event_filter.h', |
38 'default_container_layout_manager.cc', | 38 'default_container_layout_manager.cc', |
39 'default_container_layout_manager.h', | 39 'default_container_layout_manager.h', |
40 'desktop_background_view.cc', | 40 'desktop_background_view.cc', |
41 'desktop_background_view.h', | 41 'desktop_background_view.h', |
42 'desktop_event_filter.cc', | 42 'desktop_event_filter.cc', |
43 'desktop_event_filter.h', | 43 'desktop_event_filter.h', |
44 'desktop_layout_manager.cc', | 44 'desktop_layout_manager.cc', |
45 'desktop_layout_manager.h', | 45 'desktop_layout_manager.h', |
| 46 'drag_drop_controller.cc', |
| 47 'drag_drop_controller.h', |
46 'launcher/app_launcher_button.cc', | 48 'launcher/app_launcher_button.cc', |
47 'launcher/app_launcher_button.h', | 49 'launcher/app_launcher_button.h', |
48 'launcher/launcher.cc', | 50 'launcher/launcher.cc', |
49 'launcher/launcher.h', | 51 'launcher/launcher.h', |
50 'launcher/launcher_model.cc', | 52 'launcher/launcher_model.cc', |
51 'launcher/launcher_model.h', | 53 'launcher/launcher_model.h', |
52 'launcher/launcher_model_observer.h', | 54 'launcher/launcher_model_observer.h', |
53 'launcher/launcher_types.h', | 55 'launcher/launcher_types.h', |
54 'launcher/launcher_view.cc', | 56 'launcher/launcher_view.cc', |
55 'launcher/launcher_view.h', | 57 'launcher/launcher_view.h', |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 '../ui.gyp:ui', | 112 '../ui.gyp:ui', |
111 '../ui.gyp:ui_resources', | 113 '../ui.gyp:ui_resources', |
112 '../ui.gyp:ui_resources_standard', | 114 '../ui.gyp:ui_resources_standard', |
113 '../aura/aura.gyp:aura', | 115 '../aura/aura.gyp:aura', |
114 '../aura/aura.gyp:test_support_aura', | 116 '../aura/aura.gyp:test_support_aura', |
115 'aura_shell', | 117 'aura_shell', |
116 ], | 118 ], |
117 'sources': [ | 119 'sources': [ |
118 'default_container_layout_manager_unittest.cc', | 120 'default_container_layout_manager_unittest.cc', |
119 'desktop_event_filter_unittest.cc', | 121 'desktop_event_filter_unittest.cc', |
| 122 'drag_drop_controller_unittest.cc', |
120 'launcher/launcher_model_unittest.cc', | 123 'launcher/launcher_model_unittest.cc', |
121 'launcher/view_model_unittest.cc', | 124 'launcher/view_model_unittest.cc', |
122 'launcher/view_model_utils_unittest.cc', | 125 'launcher/view_model_utils_unittest.cc', |
123 'run_all_unittests.cc', | 126 'run_all_unittests.cc', |
124 'stacking_controller_unittest.cc', | 127 'stacking_controller_unittest.cc', |
125 'test_suite.cc', | 128 'test_suite.cc', |
126 'test_suite.h', | 129 'test_suite.h', |
127 'toplevel_layout_manager_unittest.cc', | 130 'toplevel_layout_manager_unittest.cc', |
128 'toplevel_window_event_filter_unittest.cc', | 131 'toplevel_window_event_filter_unittest.cc', |
129 'workspace_controller_unittest.cc', | 132 'workspace_controller_unittest.cc', |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 '../../views/views.gyp:views_desktop', | 183 '../../views/views.gyp:views_desktop', |
181 '../../views/views.gyp:views_desktop_lib', | 184 '../../views/views.gyp:views_desktop_lib', |
182 '../../views/views.gyp:views_unittests', | 185 '../../views/views.gyp:views_unittests', |
183 '../aura/aura.gyp:*', | 186 '../aura/aura.gyp:*', |
184 '../gfx/compositor/compositor.gyp:*', | 187 '../gfx/compositor/compositor.gyp:*', |
185 'aura_shell_exe', | 188 'aura_shell_exe', |
186 ], | 189 ], |
187 }, | 190 }, |
188 ], | 191 ], |
189 } | 192 } |
OLD | NEW |