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 # TODO(dmaclach): can we pick this up some other way? Right now it's | 7 # TODO(dmaclach): can we pick this up some other way? Right now it's |
8 # duplicated from chrome.gyp | 8 # duplicated from chrome.gyp |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 'remoting_audio': 0, | 10 'remoting_audio': 0, |
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 }, | 481 }, |
482 }], | 482 }], |
483 ], # conditions | 483 ], # conditions |
484 }, # end of target 'remoting_host_prefpane' | 484 }, # end of target 'remoting_host_prefpane' |
485 ], # end of 'targets' | 485 ], # end of 'targets' |
486 }], # 'OS=="mac"' | 486 }], # 'OS=="mac"' |
487 | 487 |
488 ['OS=="win"', { | 488 ['OS=="win"', { |
489 'targets': [ | 489 'targets': [ |
490 { | 490 { |
| 491 'target_name': 'remoting_breakpad_tester', |
| 492 'type': 'executable', |
| 493 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 494 'dependencies': [ |
| 495 '../base/base.gyp:base', |
| 496 ], |
| 497 'sources': [ |
| 498 'tools/breakpad_tester_win.cc', |
| 499 ], |
| 500 }, # end of target 'remoting_breakpad_tester' |
| 501 |
| 502 { |
491 'target_name': 'remoting_elevated_controller', | 503 'target_name': 'remoting_elevated_controller', |
492 'type': 'static_library', | 504 'type': 'static_library', |
493 'sources': [ | 505 'sources': [ |
494 'host/elevated_controller.idl', | 506 'host/elevated_controller.idl', |
495 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/elevated_controller.h', | 507 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/elevated_controller.h', |
496 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/elevated_controller_i.c', | 508 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/elevated_controller_i.c', |
497 ], | 509 ], |
498 # This target exports a hard dependency because dependent targets may | 510 # This target exports a hard dependency because dependent targets may |
499 # include elevated_controller.h, a generated header. | 511 # include elevated_controller.h, a generated header. |
500 'hard_dependency': 1, | 512 'hard_dependency': 1, |
(...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1785 '../base/allocator/allocator.gyp:allocator', | 1797 '../base/allocator/allocator.gyp:allocator', |
1786 ], | 1798 ], |
1787 }, | 1799 }, |
1788 ], | 1800 ], |
1789 ], | 1801 ], |
1790 }], | 1802 }], |
1791 ], # end of 'conditions' | 1803 ], # end of 'conditions' |
1792 }, # end of target 'remoting_unittests' | 1804 }, # end of target 'remoting_unittests' |
1793 ], # end of targets | 1805 ], # end of targets |
1794 } | 1806 } |
OLD | NEW |