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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 'shared/root_window_event_filter.cc', | 103 'shared/root_window_event_filter.cc', |
104 'shared/root_window_event_filter.h', | 104 'shared/root_window_event_filter.h', |
105 'single_monitor_manager.cc', | 105 'single_monitor_manager.cc', |
106 'single_monitor_manager.h', | 106 'single_monitor_manager.h', |
107 'ui_controls_win.cc', | 107 'ui_controls_win.cc', |
108 'ui_controls_x11.cc', | 108 'ui_controls_x11.cc', |
109 'window.cc', | 109 'window.cc', |
110 'window.h', | 110 'window.h', |
111 'window_delegate.h', | 111 'window_delegate.h', |
112 'window_observer.h', | 112 'window_observer.h', |
113 'x11_atom_cache.cc', | |
Daniel Erat
2012/05/21 22:49:43
do we already filter out the x11_ prefix (in addit
Elliot Glaysher
2012/05/21 22:54:45
Yes. In filename_rules.gypi, there's a rule that f
| |
114 'x11_atom_cache.h', | |
113 ], | 115 ], |
114 'conditions': [ | 116 'conditions': [ |
115 ['OS=="mac"', { | 117 ['OS=="mac"', { |
116 'sources/': [ | 118 'sources/': [ |
117 ['exclude', 'client/dispatcher_client.cc'], | 119 ['exclude', 'client/dispatcher_client.cc'], |
118 ['exclude', 'client/dispatcher_client.h'], | 120 ['exclude', 'client/dispatcher_client.h'], |
119 ], | 121 ], |
120 }], | 122 }], |
121 ['OS=="linux"', { | 123 ['OS=="linux"', { |
122 'link_settings': { | 124 'link_settings': { |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
257 # osmesa GL implementation is used on linux. | 259 # osmesa GL implementation is used on linux. |
258 ['OS=="linux"', { | 260 ['OS=="linux"', { |
259 'dependencies': [ | 261 'dependencies': [ |
260 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 262 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
261 ], | 263 ], |
262 }], | 264 }], |
263 ], | 265 ], |
264 }, | 266 }, |
265 ], | 267 ], |
266 } | 268 } |
OLD | NEW |