| 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 'includes': [ | 6 'includes': [ |
| 7 'remoting_enable.gypi', | 7 'remoting_enable.gypi', |
| 8 ], | 8 ], |
| 9 | 9 |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 204 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
| 205 ], | 205 ], |
| 206 'sources': [ | 206 'sources': [ |
| 207 '<@(remoting_cast_sources)', | 207 '<@(remoting_cast_sources)', |
| 208 ], | 208 ], |
| 209 }], | 209 }], |
| 210 ], | 210 ], |
| 211 }, # end of target 'remoting_host' | 211 }, # end of target 'remoting_host' |
| 212 | 212 |
| 213 { | 213 { |
| 214 # GN version: //remoting/host/native_messaging |
| 214 'target_name': 'remoting_native_messaging_base', | 215 'target_name': 'remoting_native_messaging_base', |
| 215 'type': 'static_library', | 216 'type': 'static_library', |
| 216 'variables': { 'enable_wexit_time_destructors': 1, }, | 217 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 217 'dependencies': [ | 218 'dependencies': [ |
| 218 '../base/base.gyp:base', | 219 '../base/base.gyp:base', |
| 219 ], | 220 ], |
| 220 'sources': [ | 221 'sources': [ |
| 221 'host/native_messaging/native_messaging_pipe.cc', | 222 '<@(remoting_host_native_messaging_sources)', |
| 222 'host/native_messaging/native_messaging_pipe.h', | |
| 223 'host/native_messaging/native_messaging_reader.cc', | |
| 224 'host/native_messaging/native_messaging_reader.h', | |
| 225 'host/native_messaging/native_messaging_writer.cc', | |
| 226 'host/native_messaging/native_messaging_writer.h', | |
| 227 'host/native_messaging/pipe_messaging_channel.cc', | |
| 228 'host/native_messaging/pipe_messaging_channel.h', | |
| 229 ], | 223 ], |
| 230 }, # end of target 'remoting_native_messaging_base' | 224 }, # end of target 'remoting_native_messaging_base' |
| 231 | 225 |
| 232 { | 226 { |
| 227 # GN version: //remoting/host/setup |
| 233 'target_name': 'remoting_host_setup_base', | 228 'target_name': 'remoting_host_setup_base', |
| 234 'type': 'static_library', | 229 'type': 'static_library', |
| 235 'variables': { 'enable_wexit_time_destructors': 1, }, | 230 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 236 'dependencies': [ | 231 'dependencies': [ |
| 237 '../base/base.gyp:base', | 232 '../base/base.gyp:base', |
| 238 '../google_apis/google_apis.gyp:google_apis', | 233 '../google_apis/google_apis.gyp:google_apis', |
| 239 'remoting_host', | 234 'remoting_host', |
| 240 ], | 235 ], |
| 241 'defines': [ | 236 'defines': [ |
| 242 'VERSION=<(version_full)', | 237 'VERSION=<(version_full)', |
| 243 ], | 238 ], |
| 244 'sources': [ | 239 'sources': [ |
| 245 'host/setup/daemon_controller.cc', | 240 '<@(remoting_host_setup_sources)', |
| 246 'host/setup/daemon_controller.h', | |
| 247 'host/setup/daemon_controller_delegate_linux.cc', | |
| 248 'host/setup/daemon_controller_delegate_linux.h', | |
| 249 'host/setup/daemon_controller_delegate_mac.h', | |
| 250 'host/setup/daemon_controller_delegate_mac.mm', | |
| 251 'host/setup/daemon_controller_delegate_win.cc', | |
| 252 'host/setup/daemon_controller_delegate_win.h', | |
| 253 'host/setup/me2me_native_messaging_host.cc', | |
| 254 'host/setup/me2me_native_messaging_host.h', | |
| 255 'host/setup/oauth_client.cc', | |
| 256 'host/setup/oauth_client.h', | |
| 257 'host/setup/oauth_helper.cc', | |
| 258 'host/setup/oauth_helper.h', | |
| 259 'host/setup/pin_validator.cc', | |
| 260 'host/setup/pin_validator.h', | |
| 261 'host/setup/service_client.cc', | |
| 262 'host/setup/service_client.h', | |
| 263 'host/setup/test_util.cc', | |
| 264 'host/setup/test_util.h', | |
| 265 'host/setup/win/auth_code_getter.cc', | |
| 266 'host/setup/win/auth_code_getter.h', | |
| 267 ], | 241 ], |
| 268 'conditions': [ | 242 'conditions': [ |
| 269 ['OS=="win"', { | 243 ['OS=="win"', { |
| 270 'dependencies': [ | 244 'dependencies': [ |
| 271 '../google_update/google_update.gyp:google_update', | 245 '../google_update/google_update.gyp:google_update', |
| 272 'remoting_lib_idl', | 246 'remoting_lib_idl', |
| 273 ], | 247 ], |
| 274 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 275 'msvs_disabled_warnings': [4267, ], | 249 'msvs_disabled_warnings': [4267, ], |
| 276 }], | 250 }], |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 # Dummy target for chromeos==1 | 709 # Dummy target for chromeos==1 |
| 736 'target_name': 'remoting_it2me_native_messaging_host', | 710 'target_name': 'remoting_it2me_native_messaging_host', |
| 737 'type': 'executable', | 711 'type': 'executable', |
| 738 }, | 712 }, |
| 739 ], # targets | 713 ], # targets |
| 740 }], # end of chromeos==0 | 714 }], # end of chromeos==0 |
| 741 ], # end of conditions | 715 ], # end of conditions |
| 742 }], # end of OS!="win" and enable_remoting_host==1 | 716 }], # end of OS!="win" and enable_remoting_host==1 |
| 743 ], # end of 'conditions' | 717 ], # end of 'conditions' |
| 744 } | 718 } |
| OLD | NEW |