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

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: Rebase. 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'defines': [ 78 'defines': [
79 # Prepend 'Ps' to the MIDL-generated routines. This includes 79 # Prepend 'Ps' to the MIDL-generated routines. This includes
80 # DllGetClassObject, DllCanUnloadNow, DllRegisterServer, 80 # DllGetClassObject, DllCanUnloadNow, DllRegisterServer,
81 # DllUnregisterServer, and DllMain. 81 # DllUnregisterServer, and DllMain.
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 'variables': {
89 'clang_warning_flags': [
90 # Generated code contains unused variables.
91 '-Wno-unused-variable',
92 ],
93 },
88 'sources': [ 94 'sources': [
89 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.dlldata.c', 95 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.dlldata.c',
90 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_p.c', 96 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib_p.c',
91 ], 97 ],
92 'variables': { 98 'variables': {
93 'clang_warning_flags': [ 99 'clang_warning_flags': [
94 # MIDL generated code has a habit of omitting optional braces. 100 # MIDL generated code has a habit of omitting optional braces.
95 '-Wno-missing-braces', 101 '-Wno-missing-braces',
96 # Source files generated by the MIDL compiler trigger warnings with 102 # Source files generated by the MIDL compiler trigger warnings with
97 # -Wincompatible-pointer-types enabled. 103 # -Wincompatible-pointer-types enabled.
98 '-Wno-incompatible-pointer-types', 104 '-Wno-incompatible-pointer-types',
Nico 2015/07/10 03:31:31 gyp: Key 'variables' repeated at level 3 with key
99 ], 105 ],
100 }, 106 },
101 }, # end of target 'remoting_lib_ps' 107 }, # end of target 'remoting_lib_ps'
102 108
103 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' 109 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb'
104 # into remoting_core.dll's resources) every time 110 # into remoting_core.dll's resources) every time
105 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on 111 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on
106 # both this and 'remoting_lib_idl' targets ensures that the resorces 112 # both this and 'remoting_lib_idl' targets ensures that the resorces
107 # are rebuilt every time the type library is updated. GYP alone is 113 # are rebuilt every time the type library is updated. GYP alone is
108 # not smart enough to figure out this dependency on its own. 114 # not smart enough to figure out this dependency on its own.
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 637
632 { 638 {
633 'target_name': 'remoting_me2me_host_archive', 639 'target_name': 'remoting_me2me_host_archive',
634 'type': 'none', 640 'type': 'none',
635 }, 641 },
636 ], # end of 'targets' 642 ], # end of 'targets'
637 }], # 'wix_exists == "True" and sas_dll_exists == "True"' 643 }], # 'wix_exists == "True" and sas_dll_exists == "True"'
638 644
639 ], # end of 'conditions' 645 ], # end of 'conditions'
640 } 646 }
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