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

Side by Side Diff: remoting/remoting_host.gypi

Issue 756643006: Remote assistance on Chrome OS Part IX - Input injection on Ozone (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Ozone_input_injection
Patch Set: Address wez's feedback Created 6 years 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
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 'includes': [ 6 'includes': [
7 'remoting_host_linux.gypi', 7 'remoting_host_linux.gypi',
8 'remoting_host_mac.gypi', 8 'remoting_host_mac.gypi',
9 'remoting_host_win.gypi', 9 'remoting_host_win.gypi',
10 ], 10 ],
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 ], 100 ],
101 'include_dirs': [ 101 'include_dirs': [
102 '../third_party/skia/include/utils', 102 '../third_party/skia/include/utils',
103 ], 103 ],
104 'sources!' : [ 104 'sources!' : [
105 'host/clipboard_x11.cc', 105 'host/clipboard_x11.cc',
106 'host/continue_window_linux.cc', 106 'host/continue_window_linux.cc',
107 'host/disconnect_window_linux.cc', 107 'host/disconnect_window_linux.cc',
108 'host/linux/x_server_clipboard.cc', 108 'host/linux/x_server_clipboard.cc',
109 'host/linux/x_server_clipboard.h', 109 'host/linux/x_server_clipboard.h',
110 'host/local_input_monitor_x11.cc',
110 'host/policy_hack/policy_watcher_linux.cc', 111 'host/policy_hack/policy_watcher_linux.cc',
111 'host/remoting_me2me_host.cc', 112 'host/remoting_me2me_host.cc',
112 ], 113 ],
113 'conditions': [ 114 'conditions': [
114 ['use_ash==1', { 115 ['use_ash==1', {
115 'dependencies': [ 116 'dependencies': [
116 '../ash/ash.gyp:ash', 117 '../ash/ash.gyp:ash',
117 ], 118 ],
118 }], 119 }],
119 ['use_ozone==0', { 120 ['use_ozone==0', {
120 'sources!': [ 121 'sources!': [
121 'host/input_injector_chromeos.cc', 122 'host/input_injector_chromeos.cc',
122 'host/input_injector_chromeos.h', 123 'host/input_injector_chromeos.h',
123 'host/local_input_monitor_chromeos.cc',
124 'host/chromeos/mouse_cursor_monitor_aura.cc', 124 'host/chromeos/mouse_cursor_monitor_aura.cc',
125 'host/chromeos/mouse_cursor_monitor_aura.h', 125 'host/chromeos/mouse_cursor_monitor_aura.h',
126 ], 126 ],
127 }, { # use_ozone==1
128 'dependencies' : [
129 '../ui/ozone/ozone.gyp:ozone',
130 ]
127 }], 131 }],
128 ], 132 ],
129 }], 133 }],
130 ['OS=="mac"', { 134 ['OS=="mac"', {
131 'dependencies': [ 135 'dependencies': [
132 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gy p:google_toolbox_for_mac', 136 '../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gy p:google_toolbox_for_mac',
133 ], 137 ],
134 'link_settings': { 138 'link_settings': {
135 'libraries': [ 139 'libraries': [
136 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 140 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 }], # mac_breakpad==1 724 }], # mac_breakpad==1
721 ], # conditions 725 ], # conditions
722 }], # OS=mac 726 }], # OS=mac
723 ], 727 ],
724 }, # end of target 'remoting_it2me_native_messaging_host' 728 }, # end of target 'remoting_it2me_native_messaging_host'
725 ], # end of 'targets' 729 ], # end of 'targets'
726 }], # # end of OS!="win" and enable_it2me_host==1 730 }], # # end of OS!="win" and enable_it2me_host==1
727 731
728 ], # end of 'conditions' 732 ], # end of 'conditions'
729 } 733 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698