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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 'root_window_host_mac.h', | 81 'root_window_host_mac.h', |
82 'root_window_host_mac.mm', | 82 'root_window_host_mac.mm', |
83 'root_window_host_win.cc', | 83 'root_window_host_win.cc', |
84 'root_window_host_win.h', | 84 'root_window_host_win.h', |
85 'root_window_mac.h', | 85 'root_window_mac.h', |
86 'root_window_mac.mm', | 86 'root_window_mac.mm', |
87 'root_window_view_mac.h', | 87 'root_window_view_mac.h', |
88 'root_window_view_mac.mm', | 88 'root_window_view_mac.mm', |
89 'root_window.cc', | 89 'root_window.cc', |
90 'root_window.h', | 90 'root_window.h', |
91 'single_monitor_manager.h', | |
sky
2012/04/13 16:54:42
nit: sort.
| |
92 'single_monitor_manager.cc', | |
91 'ui_controls_win.cc', | 93 'ui_controls_win.cc', |
92 'ui_controls_x11.cc', | 94 'ui_controls_x11.cc', |
93 'window.cc', | 95 'window.cc', |
94 'window.h', | 96 'window.h', |
95 'window_delegate.h', | 97 'window_delegate.h', |
96 'window_observer.h', | 98 'window_observer.h', |
97 ], | 99 ], |
98 'conditions': [ | 100 'conditions': [ |
99 ['OS=="mac"', { | 101 ['OS=="mac"', { |
100 'sources/': [ | 102 'sources/': [ |
(...skipping 23 matching lines...) Expand all Loading... | |
124 'include_dirs': [ | 126 'include_dirs': [ |
125 '..', | 127 '..', |
126 ], | 128 ], |
127 'sources': [ | 129 'sources': [ |
128 'test/aura_test_base.cc', | 130 'test/aura_test_base.cc', |
129 'test/aura_test_base.h', | 131 'test/aura_test_base.h', |
130 'test/aura_test_helper.cc', | 132 'test/aura_test_helper.cc', |
131 'test/aura_test_helper.h', | 133 'test/aura_test_helper.h', |
132 'test/event_generator.cc', | 134 'test/event_generator.cc', |
133 'test/event_generator.h', | 135 'test/event_generator.h', |
134 'test/single_monitor_manager.h', | |
135 'test/single_monitor_manager.cc', | |
136 'test/test_activation_client.cc', | 136 'test/test_activation_client.cc', |
137 'test/test_activation_client.h', | 137 'test/test_activation_client.h', |
138 'test/test_event_filter.cc', | 138 'test/test_event_filter.cc', |
139 'test/test_event_filter.h', | 139 'test/test_event_filter.h', |
140 'test/test_screen.cc', | 140 'test/test_screen.cc', |
141 'test/test_screen.h', | 141 'test/test_screen.h', |
142 'test/test_stacking_client.cc', | 142 'test/test_stacking_client.cc', |
143 'test/test_stacking_client.h', | 143 'test/test_stacking_client.h', |
144 'test/test_windows.cc', | 144 'test/test_windows.cc', |
145 'test/test_windows.h', | 145 'test/test_windows.h', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
208 # osmesa GL implementation is used on linux. | 208 # osmesa GL implementation is used on linux. |
209 ['OS=="linux"', { | 209 ['OS=="linux"', { |
210 'dependencies': [ | 210 'dependencies': [ |
211 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 211 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
212 ], | 212 ], |
213 }], | 213 }], |
214 ], | 214 ], |
215 }, | 215 }, |
216 ], | 216 ], |
217 } | 217 } |
OLD | NEW |