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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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', | 86 'root_window_host_mac.h', |
87 'root_window_host_mac.mm', | 87 'root_window_host_mac.mm', |
88 'root_window_host_ozone.cc', | 88 'root_window_host_ozone.cc', |
89 'root_window_host_ozone.h', | 89 'root_window_host_ozone.h', |
| 90 'root_window_host_wayland.cc', |
| 91 'root_window_host_wayland.h', |
90 'root_window_host_win.cc', | 92 'root_window_host_win.cc', |
91 'root_window_host_win.h', | 93 'root_window_host_win.h', |
92 'root_window_host_x11.cc', | 94 'root_window_host_x11.cc', |
93 'root_window_host_x11.h', | 95 'root_window_host_x11.h', |
94 'root_window_mac.h', | 96 'root_window_mac.h', |
95 'root_window_mac.mm', | 97 'root_window_mac.mm', |
96 'root_window_transformer.h', | 98 'root_window_transformer.h', |
97 'root_window_view_mac.h', | 99 'root_window_view_mac.h', |
98 'root_window_view_mac.mm', | 100 'root_window_view_mac.mm', |
99 'root_window.cc', | 101 'root_window.cc', |
(...skipping 17 matching lines...) Expand all Loading... |
117 ['use_x11==1', { | 119 ['use_x11==1', { |
118 'link_settings': { | 120 'link_settings': { |
119 'libraries': [ | 121 'libraries': [ |
120 '-lX11', | 122 '-lX11', |
121 '-lXi', | 123 '-lXi', |
122 '-lXfixes', | 124 '-lXfixes', |
123 '-lXrandr', | 125 '-lXrandr', |
124 ], | 126 ], |
125 }, | 127 }, |
126 }], | 128 }], |
| 129 ['use_wayland==1', { |
| 130 'dependencies': [ |
| 131 '../wayland/wayland.gyp:wayland', |
| 132 ], |
| 133 }], |
127 ['OS=="win"', { | 134 ['OS=="win"', { |
128 'dependencies': [ | 135 'dependencies': [ |
129 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages', | 136 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages', |
130 '../../ipc/ipc.gyp:ipc', | 137 '../../ipc/ipc.gyp:ipc', |
131 ], | 138 ], |
132 }], | 139 }], |
133 ], | 140 ], |
134 }, | 141 }, |
135 { | 142 { |
136 'target_name': 'aura_test_support', | 143 'target_name': 'aura_test_support', |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 ['OS=="linux" and linux_use_tcmalloc==1', { | 300 ['OS=="linux" and linux_use_tcmalloc==1', { |
294 'dependencies': [ | 301 'dependencies': [ |
295 # See http://crbug.com/162998#c4 for why this is needed. | 302 # See http://crbug.com/162998#c4 for why this is needed. |
296 '../../base/allocator/allocator.gyp:allocator', | 303 '../../base/allocator/allocator.gyp:allocator', |
297 ], | 304 ], |
298 }], | 305 }], |
299 ], | 306 ], |
300 }, | 307 }, |
301 ], | 308 ], |
302 } | 309 } |
OLD | NEW |