Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(100)

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 1226573002: Clang on Windows: Remove -Wno-unused-variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fix-unused-variables
Patch Set: Avoid duplicate variables block. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': { 92 'variables': {
93 'clang_warning_flags': [ 93 'clang_warning_flags': [
94 # MIDL generated code has a habit of omitting optional braces. 94 # MIDL generated code has a habit of omitting optional braces.
95 '-Wno-missing-braces', 95 '-Wno-missing-braces',
96 # Source files generated by the MIDL compiler trigger warnings with 96 # Source files generated by the MIDL compiler trigger warnings with
97 # -Wincompatible-pointer-types enabled. 97 # -Wincompatible-pointer-types enabled.
98 '-Wno-incompatible-pointer-types', 98 '-Wno-incompatible-pointer-types',
99 # Generated code contains unused variables.
100 '-Wno-unused-variable',
99 ], 101 ],
100 }, 102 },
101 }, # end of target 'remoting_lib_ps' 103 }, # end of target 'remoting_lib_ps'
102 104
103 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' 105 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb'
104 # into remoting_core.dll's resources) every time 106 # into remoting_core.dll's resources) every time
105 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on 107 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on
106 # both this and 'remoting_lib_idl' targets ensures that the resorces 108 # both this and 'remoting_lib_idl' targets ensures that the resorces
107 # are rebuilt every time the type library is updated. GYP alone is 109 # are rebuilt every time the type library is updated. GYP alone is
108 # not smart enough to figure out this dependency on its own. 110 # not smart enough to figure out this dependency on its own.
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 633
632 { 634 {
633 'target_name': 'remoting_me2me_host_archive', 635 'target_name': 'remoting_me2me_host_archive',
634 'type': 'none', 636 'type': 'none',
635 }, 637 },
636 ], # end of 'targets' 638 ], # end of 'targets'
637 }], # 'wix_exists == "True" and sas_dll_exists == "True"' 639 }], # 'wix_exists == "True" and sas_dll_exists == "True"'
638 640
639 ], # end of 'conditions' 641 ], # end of 'conditions'
640 } 642 }
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698