| 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 | |
| 215 'target_name': 'remoting_native_messaging_base', | 214 'target_name': 'remoting_native_messaging_base', |
| 216 'type': 'static_library', | 215 'type': 'static_library', |
| 217 'variables': { 'enable_wexit_time_destructors': 1, }, | 216 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 218 'dependencies': [ | 217 'dependencies': [ |
| 219 '../base/base.gyp:base', | 218 '../base/base.gyp:base', |
| 220 ], | 219 ], |
| 221 'sources': [ | 220 'sources': [ |
| 222 '<@(remoting_host_native_messaging_sources)', | 221 'host/native_messaging/native_messaging_pipe.cc', |
| 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', |
| 223 ], | 229 ], |
| 224 }, # end of target 'remoting_native_messaging_base' | 230 }, # end of target 'remoting_native_messaging_base' |
| 225 | 231 |
| 226 { | 232 { |
| 227 # GN version: //remoting/host/setup | |
| 228 'target_name': 'remoting_host_setup_base', | 233 'target_name': 'remoting_host_setup_base', |
| 229 'type': 'static_library', | 234 'type': 'static_library', |
| 230 'variables': { 'enable_wexit_time_destructors': 1, }, | 235 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 231 'dependencies': [ | 236 'dependencies': [ |
| 232 '../base/base.gyp:base', | 237 '../base/base.gyp:base', |
| 233 '../google_apis/google_apis.gyp:google_apis', | 238 '../google_apis/google_apis.gyp:google_apis', |
| 234 'remoting_host', | 239 'remoting_host', |
| 235 ], | 240 ], |
| 236 'defines': [ | 241 'defines': [ |
| 237 'VERSION=<(version_full)', | 242 'VERSION=<(version_full)', |
| 238 ], | 243 ], |
| 239 'sources': [ | 244 'sources': [ |
| 240 '<@(remoting_host_setup_sources)', | 245 'host/setup/daemon_controller.cc', |
| 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', |
| 241 ], | 267 ], |
| 242 'conditions': [ | 268 'conditions': [ |
| 243 ['OS=="win"', { | 269 ['OS=="win"', { |
| 244 'dependencies': [ | 270 'dependencies': [ |
| 245 '../google_update/google_update.gyp:google_update', | 271 '../google_update/google_update.gyp:google_update', |
| 246 'remoting_lib_idl', | 272 'remoting_lib_idl', |
| 247 ], | 273 ], |
| 248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 274 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 249 'msvs_disabled_warnings': [4267, ], | 275 'msvs_disabled_warnings': [4267, ], |
| 250 }], | 276 }], |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 # Dummy target for chromeos==1 | 735 # Dummy target for chromeos==1 |
| 710 'target_name': 'remoting_it2me_native_messaging_host', | 736 'target_name': 'remoting_it2me_native_messaging_host', |
| 711 'type': 'executable', | 737 'type': 'executable', |
| 712 }, | 738 }, |
| 713 ], # targets | 739 ], # targets |
| 714 }], # end of chromeos==0 | 740 }], # end of chromeos==0 |
| 715 ], # end of conditions | 741 ], # end of conditions |
| 716 }], # end of OS!="win" and enable_remoting_host==1 | 742 }], # end of OS!="win" and enable_remoting_host==1 |
| 717 ], # end of 'conditions' | 743 ], # end of 'conditions' |
| 718 } | 744 } |
| OLD | NEW |