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

Side by Side Diff: remoting/remoting_host_win.gypi

Issue 1226583002: clang/win: Build chromium code without -Wno-incompatible-pointer-types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-logical-op-parentheses
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
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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': { 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
97 # -Wincompatible-pointer-types enabled.
98 '-Wno-incompatible-pointer-types',
96 ], 99 ],
97 }, 100 },
98 }, # end of target 'remoting_lib_ps' 101 }, # end of target 'remoting_lib_ps'
99 102
100 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb' 103 # Regenerates 'chromoting_lib.rc' (used to embed 'chromoting_lib.tlb'
101 # into remoting_core.dll's resources) every time 104 # into remoting_core.dll's resources) every time
102 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on 105 # 'chromoting_lib_idl.templ' changes. Making remoting_core depend on
103 # both this and 'remoting_lib_idl' targets ensures that the resorces 106 # both this and 'remoting_lib_idl' targets ensures that the resorces
104 # are rebuilt every time the type library is updated. GYP alone is 107 # are rebuilt every time the type library is updated. GYP alone is
105 # not smart enough to figure out this dependency on its own. 108 # not smart enough to figure out this dependency on its own.
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 631
629 { 632 {
630 'target_name': 'remoting_me2me_host_archive', 633 'target_name': 'remoting_me2me_host_archive',
631 'type': 'none', 634 'type': 'none',
632 }, 635 },
633 ], # end of 'targets' 636 ], # end of 'targets'
634 }], # 'wix_exists == "True" and sas_dll_exists == "True"' 637 }], # 'wix_exists == "True" and sas_dll_exists == "True"'
635 638
636 ], # end of 'conditions' 639 ], # end of 'conditions'
637 } 640 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698