| 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 { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 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/drag_drop_client.h', |
| 31 'client/stacking_client.h', | 31 'client/stacking_client.h', |
| 32 'client/tooltip_client.h', | 32 'client/tooltip_client.h', |
| 33 'client/window_drag_drop_delegate.h', | 33 'client/window_drag_drop_delegate.h', |
| 34 'cursor.h', | 34 'cursor.h', |
| 35 'desktop_host.h', | 35 'root_window_host.h', |
| 36 'desktop_host_linux.cc', | 36 'root_window_host_linux.cc', |
| 37 'desktop_host_win.cc', | 37 'root_window_host_win.cc', |
| 38 'desktop_host_win.h', | 38 'root_window_host_win.h', |
| 39 'desktop.cc', | 39 'root_window.cc', |
| 40 'desktop.h', | 40 'root_window.h', |
| 41 'event.cc', | 41 'event.cc', |
| 42 'event.h', | 42 'event.h', |
| 43 'event_filter.cc', | 43 'event_filter.cc', |
| 44 'event_filter.h', | 44 'event_filter.h', |
| 45 'focus_manager.h', | 45 'focus_manager.h', |
| 46 'layout_manager.cc', | 46 'layout_manager.cc', |
| 47 'layout_manager.h', | 47 'layout_manager.h', |
| 48 'screen_aura.cc', | 48 'screen_aura.cc', |
| 49 'screen_aura.h', | 49 'screen_aura.h', |
| 50 'window.cc', | 50 'window.cc', |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'test_support_aura', | 124 'test_support_aura', |
| 125 'aura', | 125 'aura', |
| 126 ], | 126 ], |
| 127 'include_dirs': [ | 127 'include_dirs': [ |
| 128 '..', | 128 '..', |
| 129 ], | 129 ], |
| 130 'sources': [ | 130 'sources': [ |
| 131 'test/run_all_unittests.cc', | 131 'test/run_all_unittests.cc', |
| 132 'test/test_suite.cc', | 132 'test/test_suite.cc', |
| 133 'test/test_suite.h', | 133 'test/test_suite.h', |
| 134 'desktop_unittest.cc', | 134 'root_window_unittest.cc', |
| 135 'event_filter_unittest.cc', | 135 'event_filter_unittest.cc', |
| 136 'window_unittest.cc', | 136 'window_unittest.cc', |
| 137 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 137 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 138 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', | 138 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', |
| 139 ], | 139 ], |
| 140 # osmesa GL implementation is used on linux. | 140 # osmesa GL implementation is used on linux. |
| 141 'conditions': [ | 141 'conditions': [ |
| 142 ['OS=="linux"', { | 142 ['OS=="linux"', { |
| 143 'dependencies': [ | 143 'dependencies': [ |
| 144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 144 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 145 ], | 145 ], |
| 146 }], | 146 }], |
| 147 ], | 147 ], |
| 148 }, | 148 }, |
| 149 ], | 149 ], |
| 150 } | 150 } |
| OLD | NEW |