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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 # Set this to run the jscompile checks after building the webapp. | 9 # Set this to run the jscompile checks after building the webapp. |
10 'run_jscompile%': 1, | 10 'run_jscompile%': 1, |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 '-g', '<(grit_out_dir)', | 206 '-g', '<(grit_out_dir)', |
207 '-x', '<(copy_output_dir)/.', | 207 '-x', '<(copy_output_dir)/.', |
208 '<@(remoting_locales)', | 208 '<@(remoting_locales)', |
209 ], | 209 ], |
210 } | 210 } |
211 ], | 211 ], |
212 'includes': [ '../build/grit_target.gypi' ], | 212 'includes': [ '../build/grit_target.gypi' ], |
213 }, # end of target 'remoting_resources' | 213 }, # end of target 'remoting_resources' |
214 | 214 |
215 { | 215 { |
216 # GN version: //remoting/base | 216 # GN version: //remoting/base and //remoting/codec |
217 'target_name': 'remoting_base', | 217 'target_name': 'remoting_base', |
218 'type': 'static_library', | 218 'type': 'static_library', |
219 'variables': { 'enable_wexit_time_destructors': 1, }, | 219 'variables': { 'enable_wexit_time_destructors': 1, }, |
220 'dependencies': [ | 220 'dependencies': [ |
221 '../base/base.gyp:base', | 221 '../base/base.gyp:base', |
222 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 222 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
223 '../media/media.gyp:media', | 223 '../media/media.gyp:media', |
224 '../media/media.gyp:shared_memory_support', | 224 '../media/media.gyp:shared_memory_support', |
225 '../net/net.gyp:net', | 225 '../net/net.gyp:net', |
226 '../third_party/libvpx/libvpx.gyp:libvpx', | 226 '../third_party/libvpx/libvpx.gyp:libvpx', |
(...skipping 11 matching lines...) Expand all Loading... |
238 '../base/base.gyp:base', | 238 '../base/base.gyp:base', |
239 '../net/net.gyp:net', | 239 '../net/net.gyp:net', |
240 '../third_party/protobuf/protobuf.gyp:protobuf_lite', | 240 '../third_party/protobuf/protobuf.gyp:protobuf_lite', |
241 'proto/chromotocol.gyp:chromotocol_proto_lib', | 241 'proto/chromotocol.gyp:chromotocol_proto_lib', |
242 ], | 242 ], |
243 # This target needs a hard dependency because dependent targets | 243 # This target needs a hard dependency because dependent targets |
244 # depend on chromotocol_proto_lib for headers. | 244 # depend on chromotocol_proto_lib for headers. |
245 'hard_dependency': 1, | 245 'hard_dependency': 1, |
246 'sources': [ | 246 'sources': [ |
247 '<@(remoting_base_sources)', | 247 '<@(remoting_base_sources)', |
| 248 '<@(remoting_codec_sources)', |
248 ], | 249 ], |
249 }, # end of target 'remoting_base' | 250 }, # end of target 'remoting_base' |
250 | 251 |
251 { | 252 { |
252 # GN version: //remoting/protocol | 253 # GN version: //remoting/protocol |
253 'target_name': 'remoting_protocol', | 254 'target_name': 'remoting_protocol', |
254 'type': 'static_library', | 255 'type': 'static_library', |
255 'variables': { 'enable_wexit_time_destructors': 1, }, | 256 'variables': { 'enable_wexit_time_destructors': 1, }, |
256 'dependencies': [ | 257 'dependencies': [ |
257 '../base/base.gyp:base', | 258 '../base/base.gyp:base', |
258 '../crypto/crypto.gyp:crypto', | 259 '../crypto/crypto.gyp:crypto', |
259 '../jingle/jingle.gyp:jingle_glue', | 260 '../jingle/jingle.gyp:jingle_glue', |
260 '../jingle/jingle.gyp:notifier', | 261 '../jingle/jingle.gyp:notifier', |
261 '../net/net.gyp:net', | 262 '../net/net.gyp:net', |
262 '../third_party/libjingle/libjingle.gyp:libjingle', | 263 '../third_party/libjingle/libjingle.gyp:libjingle', |
263 'remoting_base', | 264 'remoting_base', |
264 ], | 265 ], |
265 'export_dependent_settings': [ | 266 'export_dependent_settings': [ |
266 '../third_party/libjingle/libjingle.gyp:libjingle', | 267 '../third_party/libjingle/libjingle.gyp:libjingle', |
267 ], | 268 ], |
268 'sources': [ | 269 'sources': [ |
269 '<@(remoting_protocol_sources)', | 270 '<@(remoting_protocol_sources)', |
270 ], | 271 ], |
271 }, # end of target 'remoting_protocol' | 272 }, # end of target 'remoting_protocol' |
272 ], # end of targets | 273 ], # end of targets |
273 } | 274 } |
OLD | NEW |