| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ], | 97 ], |
| 98 'variables': { | 98 'variables': { |
| 99 'clang_warning_flags': [ | 99 'clang_warning_flags': [ |
| 100 # MIDL generated code has a habit of omitting optional braces. | 100 # MIDL generated code has a habit of omitting optional braces. |
| 101 '-Wno-missing-braces', | 101 '-Wno-missing-braces', |
| 102 # Source files generated by the MIDL compiler trigger warnings with | 102 # Source files generated by the MIDL compiler trigger warnings with |
| 103 # -Wincompatible-pointer-types enabled. | 103 # -Wincompatible-pointer-types enabled. |
| 104 '-Wno-incompatible-pointer-types', | 104 '-Wno-incompatible-pointer-types', |
| 105 # Generated code contains unused variables. | 105 # Generated code contains unused variables. |
| 106 '-Wno-unused-variable', | 106 '-Wno-unused-variable', |
| 107 # PROXYFILE_LIST_START is an extern with initializer. |
| 108 '-Wno-extern-initializer', |
| 107 ], | 109 ], |
| 108 }, | 110 }, |
| 109 }, # end of target 'remoting_lib_ps' | 111 }, # end of target 'remoting_lib_ps' |
| 110 | 112 |
| 111 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' | 113 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' |
| 112 # into remoting_core.dll's resources) every time | 114 # into remoting_core.dll's resources) every time |
| 113 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on | 115 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on |
| 114 # both this and 'remoting_lib_idl' targets ensures that the resorces | 116 # both this and 'remoting_lib_idl' targets ensures that the resorces |
| 115 # are rebuilt every time the type library is updated. GYP alone is | 117 # are rebuilt every time the type library is updated. GYP alone is |
| 116 # not smart enough to figure out this dependency on its own. | 118 # not smart enough to figure out this dependency on its own. |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 639 | 641 |
| 640 { | 642 { |
| 641 'target_name': 'remoting_me2me_host_archive', | 643 'target_name': 'remoting_me2me_host_archive', |
| 642 'type': 'none', | 644 'type': 'none', |
| 643 }, | 645 }, |
| 644 ], # end of 'targets' | 646 ], # end of 'targets' |
| 645 }], # 'wix_exists == "True" and sas_dll_exists == "True"' | 647 }], # 'wix_exists == "True" and sas_dll_exists == "True"' |
| 646 | 648 |
| 647 ], # end of 'conditions' | 649 ], # end of 'conditions' |
| 648 } | 650 } |
| OLD | NEW |