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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 'ENTRY_PREFIX=Ps', | 82 'ENTRY_PREFIX=Ps', |
83 'REGISTER_PROXY_DLL', | 83 'REGISTER_PROXY_DLL', |
84 ], | 84 ], |
85 'dependencies': [ | 85 'dependencies': [ |
86 'remoting_lib_idl', | 86 'remoting_lib_idl', |
87 ], | 87 ], |
88 'sources': [ | 88 'sources': [ |
89 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.dlldata.c', | 89 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.dlldata.c', |
90 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_p.c', | 90 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_p.c', |
91 ], | 91 ], |
| 92 'variables': { |
| 93 'clang_warning_flags': [ |
| 94 # Source files generated by the MIDL compiler trigger warnings with |
| 95 # -Wincompatible-pointer-types enabled. |
| 96 '-Wno-incompatible-pointer-types', |
| 97 ] |
| 98 }, |
92 }, # end of target 'remoting_lib_ps' | 99 }, # end of target 'remoting_lib_ps' |
93 | 100 |
94 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' | 101 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' |
95 # into remoting_core.dll's resources) every time | 102 # into remoting_core.dll's resources) every time |
96 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on | 103 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on |
97 # both this and 'remoting_lib_idl' targets ensures that the resorces | 104 # both this and 'remoting_lib_idl' targets ensures that the resorces |
98 # are rebuilt every time the type library is updated. GYP alone is | 105 # are rebuilt every time the type library is updated. GYP alone is |
99 # not smart enough to figure out this dependency on its own. | 106 # not smart enough to figure out this dependency on its own. |
100 { | 107 { |
101 'target_name': 'remoting_lib_rc', | 108 'target_name': 'remoting_lib_rc', |
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 | 629 |
623 { | 630 { |
624 'target_name': 'remoting_me2me_host_archive', | 631 'target_name': 'remoting_me2me_host_archive', |
625 'type': 'none', | 632 'type': 'none', |
626 }, | 633 }, |
627 ], # end of 'targets' | 634 ], # end of 'targets' |
628 }], # 'wix_exists == "True" and sas_dll_exists == "True"' | 635 }], # 'wix_exists == "True" and sas_dll_exists == "True"' |
629 | 636 |
630 ], # end of 'conditions' | 637 ], # end of 'conditions' |
631 } | 638 } |
OLD | NEW |