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

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 1216413002: Fix remaining warnings for -Wmissing-braces and enable on win clang. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Less nesting 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 | « components/policy/core/common/policy_loader_win.cc ('k') | third_party/cld_2/BUILD.gn » ('j') | 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 # MIDL generated code has a habit of omitting optional braces.
95 '-Wno-missing-braces',
96 ],
97 },
92 }, # end of target 'remoting_lib_ps' 98 }, # end of target 'remoting_lib_ps'
93 99
94 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' 100 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb'
95 # into remoting_core.dll's resources) every time 101 # into remoting_core.dll's resources) every time
96 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on 102 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on
97 # both this and 'remoting_lib_idl' targets ensures that the resorces 103 # both this and 'remoting_lib_idl' targets ensures that the resorces
98 # are rebuilt every time the type library is updated. GYP alone is 104 # are rebuilt every time the type library is updated. GYP alone is
99 # not smart enough to figure out this dependency on its own. 105 # not smart enough to figure out this dependency on its own.
100 { 106 {
101 'target_name': 'remoting_lib_rc', 107 'target_name': 'remoting_lib_rc',
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
622 628
623 { 629 {
624 'target_name': 'remoting_me2me_host_archive', 630 'target_name': 'remoting_me2me_host_archive',
625 'type': 'none', 631 'type': 'none',
626 }, 632 },
627 ], # end of 'targets' 633 ], # end of 'targets'
628 }], # 'wix_exists == "True" and sas_dll_exists == "True"' 634 }], # 'wix_exists == "True" and sas_dll_exists == "True"'
629 635
630 ], # end of 'conditions' 636 ], # end of 'conditions'
631 } 637 }
OLDNEW
« no previous file with comments | « components/policy/core/common/policy_loader_win.cc ('k') | third_party/cld_2/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698