| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'root_window_host_mac.h', | 79 'root_window_host_mac.h', |
| 80 'root_window_host_mac.mm', | 80 'root_window_host_mac.mm', |
| 81 'root_window_host_win.cc', | 81 'root_window_host_win.cc', |
| 82 'root_window_host_win.h', | 82 'root_window_host_win.h', |
| 83 'root_window_mac.h', | 83 'root_window_mac.h', |
| 84 'root_window_mac.mm', | 84 'root_window_mac.mm', |
| 85 'root_window_view_mac.h', | 85 'root_window_view_mac.h', |
| 86 'root_window_view_mac.mm', | 86 'root_window_view_mac.mm', |
| 87 'root_window.cc', | 87 'root_window.cc', |
| 88 'root_window.h', | 88 'root_window.h', |
| 89 'screen_aura.cc', | |
| 90 'screen_aura.h', | |
| 91 'window.cc', | 89 'window.cc', |
| 92 'window.h', | 90 'window.h', |
| 93 'window_delegate.h', | 91 'window_delegate.h', |
| 94 'window_observer.h', | 92 'window_observer.h', |
| 95 ], | 93 ], |
| 96 'conditions': [ | 94 'conditions': [ |
| 97 ['OS=="mac"', { | 95 ['OS=="mac"', { |
| 98 'sources/': [ | 96 'sources/': [ |
| 99 ['exclude', 'client/dispatcher_client.cc'], | 97 ['exclude', 'client/dispatcher_client.cc'], |
| 100 ['exclude', 'client/dispatcher_client.h'], | 98 ['exclude', 'client/dispatcher_client.h'], |
| (...skipping 17 matching lines...) Expand all Loading... |
| 118 'test/aura_test_base.cc', | 116 'test/aura_test_base.cc', |
| 119 'test/aura_test_base.h', | 117 'test/aura_test_base.h', |
| 120 'test/aura_test_helper.cc', | 118 'test/aura_test_helper.cc', |
| 121 'test/aura_test_helper.h', | 119 'test/aura_test_helper.h', |
| 122 'test/event_generator.cc', | 120 'test/event_generator.cc', |
| 123 'test/event_generator.h', | 121 'test/event_generator.h', |
| 124 'test/test_activation_client.cc', | 122 'test/test_activation_client.cc', |
| 125 'test/test_activation_client.h', | 123 'test/test_activation_client.h', |
| 126 'test/test_event_filter.cc', | 124 'test/test_event_filter.cc', |
| 127 'test/test_event_filter.h', | 125 'test/test_event_filter.h', |
| 126 'test/test_screen.cc', |
| 127 'test/test_screen.h', |
| 128 'test/test_stacking_client.cc', | 128 'test/test_stacking_client.cc', |
| 129 'test/test_stacking_client.h', | 129 'test/test_stacking_client.h', |
| 130 'test/test_windows.cc', | 130 'test/test_windows.cc', |
| 131 'test/test_windows.h', | 131 'test/test_windows.h', |
| 132 'test/test_window_delegate.cc', | 132 'test/test_window_delegate.cc', |
| 133 'test/test_window_delegate.h', | 133 'test/test_window_delegate.h', |
| 134 ], | 134 ], |
| 135 }, | 135 }, |
| 136 { | 136 { |
| 137 'target_name': 'aura_demo', | 137 'target_name': 'aura_demo', |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 # osmesa GL implementation is used on linux. | 195 # osmesa GL implementation is used on linux. |
| 196 ['OS=="linux"', { | 196 ['OS=="linux"', { |
| 197 'dependencies': [ | 197 'dependencies': [ |
| 198 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 198 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
| 199 ], | 199 ], |
| 200 }], | 200 }], |
| 201 ], | 201 ], |
| 202 }, | 202 }, |
| 203 ], | 203 ], |
| 204 } | 204 } |
| OLD | NEW |