OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 | 9 |
10 'target_defaults': { | 10 'target_defaults': { |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 }, # end of target 'chromoting_base' | 182 }, # end of target 'chromoting_base' |
183 | 183 |
184 { | 184 { |
185 'target_name': 'chromoting_host', | 185 'target_name': 'chromoting_host', |
186 'type': '<(library)', | 186 'type': '<(library)', |
187 'dependencies': [ | 187 'dependencies': [ |
188 'chromoting_base', | 188 'chromoting_base', |
189 'chromoting_jingle_glue', | 189 'chromoting_jingle_glue', |
190 'chromoting_protocol', | 190 'chromoting_protocol', |
191 'differ_block', | 191 'differ_block', |
| 192 '../crypto/crypto.gyp:crypto', |
192 ], | 193 ], |
193 'sources': [ | 194 'sources': [ |
194 'host/access_verifier.cc', | 195 'host/access_verifier.cc', |
195 'host/access_verifier.h', | 196 'host/access_verifier.h', |
196 'host/capturer.h', | 197 'host/capturer.h', |
197 'host/capturer_helper.cc', | 198 'host/capturer_helper.cc', |
198 'host/capturer_helper.h', | 199 'host/capturer_helper.h', |
199 'host/capturer_fake.cc', | 200 'host/capturer_fake.cc', |
200 'host/capturer_fake.h', | 201 'host/capturer_fake.h', |
201 'host/capturer_linux.cc', | 202 'host/capturer_linux.cc', |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 ], | 313 ], |
313 }, # end of target 'chromoting_simple_host' | 314 }, # end of target 'chromoting_simple_host' |
314 | 315 |
315 { | 316 { |
316 'target_name': 'chromoting_host_keygen', | 317 'target_name': 'chromoting_host_keygen', |
317 'type': 'executable', | 318 'type': 'executable', |
318 'dependencies': [ | 319 'dependencies': [ |
319 'chromoting_base', | 320 'chromoting_base', |
320 '../base/base.gyp:base', | 321 '../base/base.gyp:base', |
321 '../base/base.gyp:base_i18n', | 322 '../base/base.gyp:base_i18n', |
| 323 '../crypto/crypto.gyp:crypto', |
322 ], | 324 ], |
323 'sources': [ | 325 'sources': [ |
324 'host/keygen_main.cc', | 326 'host/keygen_main.cc', |
325 ], | 327 ], |
326 }, # end of target 'chromoting_host_keygen' | 328 }, # end of target 'chromoting_host_keygen' |
327 | 329 |
328 { | 330 { |
329 'target_name': 'chromoting_jingle_glue', | 331 'target_name': 'chromoting_jingle_glue', |
330 'type': '<(library)', | 332 'type': '<(library)', |
331 'dependencies': [ | 333 'dependencies': [ |
(...skipping 24 matching lines...) Expand all Loading... |
356 'jingle_glue/xmpp_socket_adapter.h', | 358 'jingle_glue/xmpp_socket_adapter.h', |
357 ], | 359 ], |
358 }, # end of target 'chromoting_jingle_glue' | 360 }, # end of target 'chromoting_jingle_glue' |
359 | 361 |
360 { | 362 { |
361 'target_name': 'chromoting_protocol', | 363 'target_name': 'chromoting_protocol', |
362 'type': '<(library)', | 364 'type': '<(library)', |
363 'dependencies': [ | 365 'dependencies': [ |
364 'chromoting_base', | 366 'chromoting_base', |
365 'chromoting_jingle_glue', | 367 'chromoting_jingle_glue', |
| 368 '../crypto/crypto.gyp:crypto', |
366 '../jingle/jingle.gyp:jingle_glue', | 369 '../jingle/jingle.gyp:jingle_glue', |
367 ], | 370 ], |
368 'export_dependent_settings': [ | 371 'export_dependent_settings': [ |
369 'chromoting_jingle_glue', | 372 'chromoting_jingle_glue', |
370 ], | 373 ], |
371 'sources': [ | 374 'sources': [ |
372 'protocol/buffered_socket_writer.cc', | 375 'protocol/buffered_socket_writer.cc', |
373 'protocol/buffered_socket_writer.h', | 376 'protocol/buffered_socket_writer.h', |
374 'protocol/client_control_sender.cc', | 377 'protocol/client_control_sender.cc', |
375 'protocol/client_control_Sender.h', | 378 'protocol/client_control_Sender.h', |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 ], # end of 'conditions' | 581 ], # end of 'conditions' |
579 }, # end of target 'chromoting_unittests' | 582 }, # end of target 'chromoting_unittests' |
580 ], # end of targets | 583 ], # end of targets |
581 } | 584 } |
582 | 585 |
583 # Local Variables: | 586 # Local Variables: |
584 # tab-width:2 | 587 # tab-width:2 |
585 # indent-tabs-mode:nil | 588 # indent-tabs-mode:nil |
586 # End: | 589 # End: |
587 # vim: set expandtab tabstop=2 shiftwidth=2: | 590 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |