| 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 | 7 |
| 8 'branding_path': '../remoting/branding_<(branding)', | 8 'branding_path': '../remoting/branding_<(branding)', |
| 9 | 9 |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 { | 229 { |
| 230 # GN version: //remoting/protocol | 230 # GN version: //remoting/protocol |
| 231 'target_name': 'remoting_protocol', | 231 'target_name': 'remoting_protocol', |
| 232 'type': 'static_library', | 232 'type': 'static_library', |
| 233 'variables': { 'enable_wexit_time_destructors': 1, }, | 233 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 234 'dependencies': [ | 234 'dependencies': [ |
| 235 '../base/base.gyp:base', | 235 '../base/base.gyp:base', |
| 236 '../crypto/crypto.gyp:crypto', | 236 '../crypto/crypto.gyp:crypto', |
| 237 '../jingle/jingle.gyp:jingle_glue', | 237 '../jingle/jingle.gyp:jingle_glue', |
| 238 '../net/net.gyp:net', | 238 '../net/net.gyp:net', |
| 239 '../third_party/boringssl/boringssl.gyp:boringssl', | |
| 240 '../third_party/expat/expat.gyp:expat', | 239 '../third_party/expat/expat.gyp:expat', |
| 241 '../third_party/libjingle/libjingle.gyp:libjingle', | 240 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 242 '../third_party/libyuv/libyuv.gyp:libyuv', | 241 '../third_party/libyuv/libyuv.gyp:libyuv', |
| 243 'remoting_base', | 242 'remoting_base', |
| 244 ], | 243 ], |
| 245 'export_dependent_settings': [ | 244 'export_dependent_settings': [ |
| 246 '../third_party/libjingle/libjingle.gyp:libjingle', | 245 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 247 ], | 246 ], |
| 248 'sources': [ | 247 'sources': [ |
| 249 '<@(remoting_protocol_sources)', | 248 '<@(remoting_protocol_sources)', |
| 250 '<@(remoting_protocol_nonnacl_sources)', | 249 '<@(remoting_protocol_nonnacl_sources)', |
| 251 '<@(remoting_signaling_sources)', | 250 '<@(remoting_signaling_sources)', |
| 252 ], | 251 ], |
| 253 'conditions': [ | 252 'conditions': [ |
| 254 ['enable_webrtc == 1', { | 253 ['enable_webrtc==1', { |
| 255 'dependencies': [ | 254 'dependencies': [ |
| 256 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 255 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
| 257 '../third_party/libjingle/libjingle.gyp:libpeerconnection', | 256 '../third_party/libjingle/libjingle.gyp:libpeerconnection', |
| 258 ], | 257 ], |
| 259 }], | 258 }], |
| 260 ], | 259 ], |
| 261 }, # end of target 'remoting_protocol' | 260 }, # end of target 'remoting_protocol' |
| 262 ], # end of targets | 261 ], # end of targets |
| 263 } | 262 } |
| OLD | NEW |