| 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 17 matching lines...) Expand all Loading... |
| 28 'client/aura_constants.cc', | 28 'client/aura_constants.cc', |
| 29 'client/aura_constants.h', | 29 'client/aura_constants.h', |
| 30 'client/stacking_client.h', | 30 'client/stacking_client.h', |
| 31 'cursor.h', | 31 'cursor.h', |
| 32 'desktop_host.h', | 32 'desktop_host.h', |
| 33 'desktop_host_linux.cc', | 33 'desktop_host_linux.cc', |
| 34 'desktop_host_win.cc', | 34 'desktop_host_win.cc', |
| 35 'desktop_host_win.h', | 35 'desktop_host_win.h', |
| 36 'desktop.cc', | 36 'desktop.cc', |
| 37 'desktop.h', | 37 'desktop.h', |
| 38 'client/drag_drop_client.h', |
| 38 'event.cc', | 39 'event.cc', |
| 39 'event.h', | 40 'event.h', |
| 40 'event_filter.cc', | 41 'event_filter.cc', |
| 41 'event_filter.h', | 42 'event_filter.h', |
| 42 'focus_manager.h', | 43 'focus_manager.h', |
| 43 'layout_manager.cc', | 44 'layout_manager.cc', |
| 44 'layout_manager.h', | 45 'layout_manager.h', |
| 45 'screen_aura.cc', | 46 'screen_aura.cc', |
| 46 'screen_aura.h', | 47 'screen_aura.h', |
| 47 'window.cc', | 48 'window.cc', |
| 48 'window.h', | 49 'window.h', |
| 49 'window_delegate.h', | 50 'window_delegate.h', |
| 51 'window_drag_drop_delegate.h', |
| 50 'window_observer.h', | 52 'window_observer.h', |
| 51 'window_types.h', | 53 'window_types.h', |
| 52 ], | 54 ], |
| 53 }, | 55 }, |
| 54 { | 56 { |
| 55 'target_name': 'test_support_aura', | 57 'target_name': 'test_support_aura', |
| 56 'type': 'static_library', | 58 'type': 'static_library', |
| 57 'dependencies': [ | 59 'dependencies': [ |
| 58 '../../skia/skia.gyp:skia', | 60 '../../skia/skia.gyp:skia', |
| 59 '../../testing/gtest.gyp:gtest', | 61 '../../testing/gtest.gyp:gtest', |
| (...skipping 78 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 |