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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 'chromoting_base', | 287 'chromoting_base', |
288 'chromoting_host', | 288 'chromoting_host', |
289 'chromoting_jingle_glue', | 289 'chromoting_jingle_glue', |
290 '../base/base.gyp:base', | 290 '../base/base.gyp:base', |
291 '../base/base.gyp:base_i18n', | 291 '../base/base.gyp:base_i18n', |
292 ], | 292 ], |
293 'sources': [ | 293 'sources': [ |
294 'host/capturer_fake_ascii.cc', | 294 'host/capturer_fake_ascii.cc', |
295 'host/capturer_fake_ascii.h', | 295 'host/capturer_fake_ascii.h', |
296 'host/simple_host_process.cc', | 296 'host/simple_host_process.cc', |
| 297 '../base/test/mock_chrome_application_mac.mm', |
| 298 '../base/test/mock_chrome_application_mac.h', |
297 ], | 299 ], |
298 }, # end of target 'chromoting_simple_host' | 300 }, # end of target 'chromoting_simple_host' |
299 | 301 |
300 { | 302 { |
301 'target_name': 'chromoting_host_keygen', | 303 'target_name': 'chromoting_host_keygen', |
302 'type': 'executable', | 304 'type': 'executable', |
303 'dependencies': [ | 305 'dependencies': [ |
304 'chromoting_base', | 306 'chromoting_base', |
305 '../base/base.gyp:base', | 307 '../base/base.gyp:base', |
306 '../base/base.gyp:base_i18n', | 308 '../base/base.gyp:base_i18n', |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
422 | 424 |
423 { | 425 { |
424 'target_name': 'chromotocol_test_client', | 426 'target_name': 'chromotocol_test_client', |
425 'type': 'executable', | 427 'type': 'executable', |
426 'dependencies': [ | 428 'dependencies': [ |
427 'chromoting_base', | 429 'chromoting_base', |
428 'chromoting_protocol', | 430 'chromoting_protocol', |
429 ], | 431 ], |
430 'sources': [ | 432 'sources': [ |
431 'protocol/protocol_test_client.cc', | 433 'protocol/protocol_test_client.cc', |
| 434 '../base/test/mock_chrome_application_mac.mm', |
| 435 '../base/test/mock_chrome_application_mac.h', |
432 ], | 436 ], |
433 }, # end of target 'chromotocol_test_client' | 437 }, # end of target 'chromotocol_test_client' |
434 | 438 |
435 # Remoting unit tests | 439 # Remoting unit tests |
436 { | 440 { |
437 'target_name': 'remoting_unittests', | 441 'target_name': 'remoting_unittests', |
438 'type': 'executable', | 442 'type': 'executable', |
439 'dependencies': [ | 443 'dependencies': [ |
440 'chromoting_base', | 444 'chromoting_base', |
441 'chromoting_client', | 445 'chromoting_client', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 ], # end of 'conditions' | 542 ], # end of 'conditions' |
539 }, # end of target 'chromoting_unittests' | 543 }, # end of target 'chromoting_unittests' |
540 ], # end of targets | 544 ], # end of targets |
541 } | 545 } |
542 | 546 |
543 # Local Variables: | 547 # Local Variables: |
544 # tab-width:2 | 548 # tab-width:2 |
545 # indent-tabs-mode:nil | 549 # indent-tabs-mode:nil |
546 # End: | 550 # End: |
547 # vim: set expandtab tabstop=2 shiftwidth=2: | 551 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |