Chromium Code Reviews| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 215 '../net/net.gyp:net', | 215 '../net/net.gyp:net', |
| 216 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 216 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 217 'proto/chromotocol.gyp:chromotocol_proto_lib', | 217 'proto/chromotocol.gyp:chromotocol_proto_lib', |
| 218 ], | 218 ], |
| 219 # This target needs a hard dependency because dependent targets | 219 # This target needs a hard dependency because dependent targets |
| 220 # depend on chromotocol_proto_lib for headers. | 220 # depend on chromotocol_proto_lib for headers. |
| 221 'hard_dependency': 1, | 221 'hard_dependency': 1, |
| 222 'sources': [ | 222 'sources': [ |
| 223 '<@(remoting_base_sources)', | 223 '<@(remoting_base_sources)', |
| 224 '<@(remoting_codec_sources)', | 224 '<@(remoting_codec_sources)', |
| 225 '<@(remoting_codec_nonnacl_sources)', | |
|
Sergey Ulanov
2016/03/31 22:06:20
I think you also want to update remoting/codec/BUI
Irfan
2016/04/05 21:23:28
This moved to protocol/
| |
| 225 ], | 226 ], |
| 226 }, # end of target 'remoting_base' | 227 }, # end of target 'remoting_base' |
| 227 | 228 |
| 228 { | 229 { |
| 229 # GN version: //remoting/protocol | 230 # GN version: //remoting/protocol |
| 230 'target_name': 'remoting_protocol', | 231 'target_name': 'remoting_protocol', |
| 231 'type': 'static_library', | 232 'type': 'static_library', |
| 232 'variables': { 'enable_wexit_time_destructors': 1, }, | 233 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 233 'dependencies': [ | 234 'dependencies': [ |
| 234 '../base/base.gyp:base', | 235 '../base/base.gyp:base', |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 252 'conditions': [ | 253 'conditions': [ |
| 253 ['enable_webrtc == 1', { | 254 ['enable_webrtc == 1', { |
| 254 'dependencies': [ | 255 'dependencies': [ |
| 255 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', | 256 '../third_party/libjingle/libjingle.gyp:libjingle_webrtc', |
| 256 ], | 257 ], |
| 257 }], | 258 }], |
| 258 ], | 259 ], |
| 259 }, # end of target 'remoting_protocol' | 260 }, # end of target 'remoting_protocol' |
| 260 ], # end of targets | 261 ], # end of targets |
| 261 } | 262 } |
| OLD | NEW |