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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'env.h', | 76 'env.h', |
77 'env_observer.h', | 77 'env_observer.h', |
78 'focus_manager.cc', | 78 'focus_manager.cc', |
79 'focus_manager.h', | 79 'focus_manager.h', |
80 'layout_manager.cc', | 80 'layout_manager.cc', |
81 'layout_manager.h', | 81 'layout_manager.h', |
82 'remote_root_window_host_win.cc', | 82 'remote_root_window_host_win.cc', |
83 'remote_root_window_host_win.h', | 83 'remote_root_window_host_win.h', |
84 'root_window_host.h', | 84 'root_window_host.h', |
85 'root_window_host_delegate.h', | 85 'root_window_host_delegate.h', |
86 'root_window_host_mac.h', | |
87 'root_window_host_mac.mm', | |
88 'root_window_host_ozone.cc', | 86 'root_window_host_ozone.cc', |
89 'root_window_host_ozone.h', | 87 'root_window_host_ozone.h', |
90 'root_window_host_win.cc', | 88 'root_window_host_win.cc', |
91 'root_window_host_win.h', | 89 'root_window_host_win.h', |
92 'root_window_host_x11.cc', | 90 'root_window_host_x11.cc', |
93 'root_window_host_x11.h', | 91 'root_window_host_x11.h', |
94 'root_window_mac.h', | |
95 'root_window_mac.mm', | |
96 'root_window_transformer.h', | 92 'root_window_transformer.h', |
97 'root_window_view_mac.h', | |
98 'root_window_view_mac.mm', | |
99 'root_window.cc', | 93 'root_window.cc', |
100 'root_window.h', | 94 'root_window.h', |
101 'window.cc', | 95 'window.cc', |
102 'window.h', | 96 'window.h', |
103 'window_delegate.h', | 97 'window_delegate.h', |
104 'window_observer.h', | 98 'window_observer.h', |
105 'window_tracker.cc', | 99 'window_tracker.cc', |
106 'window_tracker.h', | 100 'window_tracker.h', |
107 ], | 101 ], |
108 'conditions': [ | 102 'conditions': [ |
109 ['OS=="mac"', { | |
110 'sources/': [ | |
111 ['exclude', 'client/dispatcher_client.cc'], | |
112 ['exclude', 'client/dispatcher_client.h'], | |
113 ], | |
114 }], | |
115 ['use_x11==1', { | 103 ['use_x11==1', { |
116 'link_settings': { | 104 'link_settings': { |
117 'libraries': [ | 105 'libraries': [ |
118 '-lX11', | 106 '-lX11', |
119 '-lXi', | 107 '-lXi', |
120 '-lXfixes', | 108 '-lXfixes', |
121 '-lXrandr', | 109 '-lXrandr', |
122 ], | 110 ], |
123 }, | 111 }, |
124 }], | 112 }], |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 ['OS=="linux" and linux_use_tcmalloc==1', { | 279 ['OS=="linux" and linux_use_tcmalloc==1', { |
292 'dependencies': [ | 280 'dependencies': [ |
293 # See http://crbug.com/162998#c4 for why this is needed. | 281 # See http://crbug.com/162998#c4 for why this is needed. |
294 '../../base/allocator/allocator.gyp:allocator', | 282 '../../base/allocator/allocator.gyp:allocator', |
295 ], | 283 ], |
296 }], | 284 }], |
297 ], | 285 ], |
298 }, | 286 }, |
299 ], | 287 ], |
300 } | 288 } |
OLD | NEW |