| OLD | NEW | 
|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 77         'env.h', | 77         'env.h', | 
| 78         'env_observer.h', | 78         'env_observer.h', | 
| 79         'event.cc', | 79         'event.cc', | 
| 80         'event.h', | 80         'event.h', | 
| 81         'event_filter.h', | 81         'event_filter.h', | 
| 82         'event_mac.mm', | 82         'event_mac.mm', | 
| 83         'event_mac.h', | 83         'event_mac.h', | 
| 84         'focus_change_observer.h', | 84         'focus_change_observer.h', | 
| 85         'focus_manager.cc', | 85         'focus_manager.cc', | 
| 86         'focus_manager.h', | 86         'focus_manager.h', | 
|  | 87         'hostwm/host_window_delegate.cc', | 
|  | 88         'hostwm/host_window_delegate.h', | 
|  | 89         'hostwm/host_window_manager_client.h', | 
|  | 90         'hostwm/host_window_manager_x11.cc', | 
|  | 91         'hostwm/host_window_manager_x11.h', | 
| 87         'layout_manager.cc', | 92         'layout_manager.cc', | 
| 88         'layout_manager.h', | 93         'layout_manager.h', | 
| 89         'display_change_observer_x11.cc', | 94         'display_change_observer_x11.cc', | 
| 90         'display_change_observer_x11.h', | 95         'display_change_observer_x11.h', | 
| 91         'display_manager.cc', | 96         'display_manager.cc', | 
| 92         'display_manager.h', | 97         'display_manager.h', | 
| 93         'root_window_host.h', | 98         'root_window_host.h', | 
| 94         'root_window_host_linux.cc', | 99         'root_window_host_linux.cc', | 
| 95         'root_window_host_linux.h', | 100         'root_window_host_linux.h', | 
| 96         'root_window_host_mac.h', | 101         'root_window_host_mac.h', | 
| (...skipping 28 matching lines...) Expand all  Loading... | 
| 125       'conditions': [ | 130       'conditions': [ | 
| 126         ['OS=="mac"', { | 131         ['OS=="mac"', { | 
| 127           'sources/': [ | 132           'sources/': [ | 
| 128             ['exclude', 'client/dispatcher_client.cc'], | 133             ['exclude', 'client/dispatcher_client.cc'], | 
| 129             ['exclude', 'client/dispatcher_client.h'], | 134             ['exclude', 'client/dispatcher_client.h'], | 
| 130           ], | 135           ], | 
| 131         }], | 136         }], | 
| 132         ['OS=="linux"', { | 137         ['OS=="linux"', { | 
| 133           'link_settings': { | 138           'link_settings': { | 
| 134             'libraries': [ | 139             'libraries': [ | 
|  | 140               '-lXcomposite', | 
|  | 141               '-lXdamage', | 
| 135               '-lXfixes', | 142               '-lXfixes', | 
| 136               '-lXrandr', | 143               '-lXrandr', | 
| 137             ], | 144             ], | 
| 138           }, | 145           }, | 
| 139         }], | 146         }], | 
| 140       ], | 147       ], | 
| 141     }, | 148     }, | 
| 142     { | 149     { | 
| 143       'target_name': 'test_support_aura', | 150       'target_name': 'test_support_aura', | 
| 144       'type': 'static_library', | 151       'type': 'static_library', | 
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 289         # osmesa GL implementation is used on linux. | 296         # osmesa GL implementation is used on linux. | 
| 290         ['OS=="linux"', { | 297         ['OS=="linux"', { | 
| 291           'dependencies': [ | 298           'dependencies': [ | 
| 292             '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 299             '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 
| 293           ], | 300           ], | 
| 294         }], | 301         }], | 
| 295       ], | 302       ], | 
| 296     }, | 303     }, | 
| 297   ], | 304   ], | 
| 298 } | 305 } | 
| OLD | NEW | 
|---|