| 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/activation_client.cc', | 28 'client/activation_client.cc', |
| 29 'client/activation_client.h', | 29 'client/activation_client.h', |
| 30 'client/activation_delegate.cc', | 30 'client/activation_delegate.cc', |
| 31 'client/activation_delegate.h', | 31 'client/activation_delegate.h', |
| 32 'client/aura_constants.cc', | 32 'client/aura_constants.cc', |
| 33 'client/aura_constants.h', | 33 'client/aura_constants.h', |
| 34 'client/drag_drop_client.h', | 34 'client/drag_drop_client.h', |
| 35 'client/stacking_client.cc', |
| 35 'client/stacking_client.h', | 36 'client/stacking_client.h', |
| 36 'client/tooltip_client.h', | 37 'client/tooltip_client.h', |
| 37 'client/window_drag_drop_delegate.h', | 38 'client/window_drag_drop_delegate.h', |
| 38 'cursor.h', | 39 'cursor.h', |
| 39 'root_window_host.h', | 40 'root_window_host.h', |
| 40 'root_window_host_linux.cc', | 41 'root_window_host_linux.cc', |
| 41 'root_window_host_win.cc', | 42 'root_window_host_win.cc', |
| 42 'root_window_host_win.h', | 43 'root_window_host_win.h', |
| 43 'root_window.cc', | 44 'root_window.cc', |
| 44 'root_window.h', | 45 'root_window.h', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 72 ], | 73 ], |
| 73 'sources': [ | 74 'sources': [ |
| 74 'test/aura_test_base.cc', | 75 'test/aura_test_base.cc', |
| 75 'test/aura_test_base.h', | 76 'test/aura_test_base.h', |
| 76 'test/event_generator.cc', | 77 'test/event_generator.cc', |
| 77 'test/event_generator.h', | 78 'test/event_generator.h', |
| 78 'test/test_activation_client.cc', | 79 'test/test_activation_client.cc', |
| 79 'test/test_activation_client.h', | 80 'test/test_activation_client.h', |
| 80 'test/test_event_filter.cc', | 81 'test/test_event_filter.cc', |
| 81 'test/test_event_filter.h', | 82 'test/test_event_filter.h', |
| 82 'test/test_stacking_client.cc', | |
| 83 'test/test_stacking_client.h', | |
| 84 'test/test_windows.cc', | 83 'test/test_windows.cc', |
| 85 'test/test_windows.h', | 84 'test/test_windows.h', |
| 86 'test/test_window_delegate.cc', | 85 'test/test_window_delegate.cc', |
| 87 'test/test_window_delegate.h', | 86 'test/test_window_delegate.h', |
| 88 ], | 87 ], |
| 89 'conditions': [ | 88 'conditions': [ |
| 90 ['use_webkit_compositor==0', { | 89 ['use_webkit_compositor==0', { |
| 91 'dependencies': [ | 90 'dependencies': [ |
| 92 '../gfx/compositor/compositor.gyp:test_compositor', | 91 '../gfx/compositor/compositor.gyp:test_compositor', |
| 93 ], | 92 ], |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 ], | 160 ], |
| 162 }, { # use_webkit_compositor!=1 | 161 }, { # use_webkit_compositor!=1 |
| 163 'dependencies': [ | 162 'dependencies': [ |
| 164 '../gfx/compositor/compositor.gyp:test_compositor', | 163 '../gfx/compositor/compositor.gyp:test_compositor', |
| 165 ], | 164 ], |
| 166 }], | 165 }], |
| 167 ], | 166 ], |
| 168 }, | 167 }, |
| 169 ], | 168 ], |
| 170 } | 169 } |
| OLD | NEW |