| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'remoting_host_installer_win_roots': [ | 7 'remoting_host_installer_win_roots': [ |
| 8 'host/installer/win/', | 8 'host/installer/win/', |
| 9 ], | 9 ], |
| 10 'remoting_host_installer_win_files': [ | 10 'remoting_host_installer_win_files': [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 'remoting_host', | 23 'remoting_host', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 'tools/breakpad_tester_win.cc', | 26 'tools/breakpad_tester_win.cc', |
| 27 ], | 27 ], |
| 28 }, # end of target 'remoting_breakpad_tester' | 28 }, # end of target 'remoting_breakpad_tester' |
| 29 { | 29 { |
| 30 # GN version: //remoting/host:remoting_lib_idl | 30 # GN version: //remoting/host:remoting_lib_idl |
| 31 'target_name': 'remoting_lib_idl', | 31 'target_name': 'remoting_lib_idl', |
| 32 'type': 'static_library', | 32 'type': 'static_library', |
| 33 'variables': { |
| 34 'clang_warning_flags': [ |
| 35 # MIDL generates code like "#endif !_MIDL_USE_GUIDDEF_" |
| 36 '-Wno-extra-tokens', |
| 37 ], |
| 38 }, |
| 33 'sources': [ | 39 'sources': [ |
| 34 'host/win/chromoting_lib_idl.templ', | 40 'host/win/chromoting_lib_idl.templ', |
| 35 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.h', | 41 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.h', |
| 36 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.idl', | 42 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.idl', |
| 37 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_i.c', | 43 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_i.c', |
| 38 ], | 44 ], |
| 39 # This target exports a hard dependency because dependent targets may | 45 # This target exports a hard dependency because dependent targets may |
| 40 # include chromoting_lib.h, a generated header. | 46 # include chromoting_lib.h, a generated header. |
| 41 'hard_dependency': 1, | 47 'hard_dependency': 1, |
| 42 'msvs_settings': { | 48 'msvs_settings': { |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 633 | 639 |
| 634 { | 640 { |
| 635 'target_name': 'remoting_me2me_host_archive', | 641 'target_name': 'remoting_me2me_host_archive', |
| 636 'type': 'none', | 642 'type': 'none', |
| 637 }, | 643 }, |
| 638 ], # end of 'targets' | 644 ], # end of 'targets' |
| 639 }], # 'wix_exists == "True" and sas_dll_exists == "True"' | 645 }], # 'wix_exists == "True" and sas_dll_exists == "True"' |
| 640 | 646 |
| 641 ], # end of 'conditions' | 647 ], # end of 'conditions' |
| 642 } | 648 } |
| OLD | NEW |