Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: ui/aura/aura.gyp

Issue 13886018: Add a factory and defines for native Linux surfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Get {base,ui,aura}_unittests working with native linux surface Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 'focus_manager.cc', 74 'focus_manager.cc',
75 'focus_manager.h', 75 'focus_manager.h',
76 'layout_manager.cc', 76 'layout_manager.cc',
77 'layout_manager.h', 77 'layout_manager.h',
78 'remote_root_window_host_win.cc', 78 'remote_root_window_host_win.cc',
79 'remote_root_window_host_win.h', 79 'remote_root_window_host_win.h',
80 'root_window_host.h', 80 'root_window_host.h',
81 'root_window_host_delegate.h', 81 'root_window_host_delegate.h',
82 'root_window_host_mac.h', 82 'root_window_host_mac.h',
83 'root_window_host_mac.mm', 83 'root_window_host_mac.mm',
84 'root_window_host_linux.cc',
85 'root_window_host_linux.h',
84 'root_window_host_win.cc', 86 'root_window_host_win.cc',
85 'root_window_host_win.h', 87 'root_window_host_win.h',
86 'root_window_host_x11.cc', 88 'root_window_host_x11.cc',
87 'root_window_host_x11.h', 89 'root_window_host_x11.h',
88 'root_window_mac.h', 90 'root_window_mac.h',
89 'root_window_mac.mm', 91 'root_window_mac.mm',
90 'root_window_transformer.h', 92 'root_window_transformer.h',
91 'root_window_view_mac.h', 93 'root_window_view_mac.h',
92 'root_window_view_mac.mm', 94 'root_window_view_mac.mm',
93 'root_window.cc', 95 'root_window.cc',
94 'root_window.h', 96 'root_window.h',
95 'window.cc', 97 'window.cc',
96 'window.h', 98 'window.h',
97 'window_delegate.h', 99 'window_delegate.h',
98 'window_destruction_observer.cc', 100 'window_destruction_observer.cc',
99 'window_destruction_observer.h', 101 'window_destruction_observer.h',
100 'window_observer.h', 102 'window_observer.h',
101 'window_tracker.cc', 103 'window_tracker.cc',
102 'window_tracker.h', 104 'window_tracker.h',
103 ], 105 ],
104 'conditions': [ 106 'conditions': [
105 ['OS=="mac"', { 107 ['OS=="mac"', {
106 'sources/': [ 108 'sources/': [
107 ['exclude', 'client/dispatcher_client.cc'], 109 ['exclude', 'client/dispatcher_client.cc'],
108 ['exclude', 'client/dispatcher_client.h'], 110 ['exclude', 'client/dispatcher_client.h'],
109 ], 111 ],
110 }], 112 }],
111 ['use_x11==1', { 113 ['use_x11==1', {
114 'sources!': [
115 'root_window_host_linux.cc',
116 'root_window_host_linux.h',
117 ],
112 'link_settings': { 118 'link_settings': {
113 'libraries': [ 119 'libraries': [
114 '-lX11', 120 '-lX11',
115 '-lXi', 121 '-lXi',
116 '-lXfixes', 122 '-lXfixes',
117 '-lXrandr', 123 '-lXrandr',
118 ], 124 ],
119 }, 125 },
120 }], 126 }],
121 ['OS=="win"', { 127 ['OS=="win"', {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 # osmesa GL implementation is used on linux. 282 # osmesa GL implementation is used on linux.
277 ['OS=="linux"', { 283 ['OS=="linux"', {
278 'dependencies': [ 284 'dependencies': [
279 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 285 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
280 ], 286 ],
281 }], 287 }],
282 ], 288 ],
283 }, 289 },
284 ], 290 ],
285 } 291 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698