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

Side by Side Diff: third_party/iaccessible2/iaccessible2.gyp

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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'midl_out_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/iaccessible2', 7 'midl_out_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/iaccessible2',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 25 matching lines...) Expand all
36 'sources': [ 36 'sources': [
37 'IAccessible2Proxy.def', 37 'IAccessible2Proxy.def',
38 '<(midl_out_dir)/dlldata.c', 38 '<(midl_out_dir)/dlldata.c',
39 '<(midl_out_dir)/ia2_api_all_p.c', 39 '<(midl_out_dir)/ia2_api_all_p.c',
40 ], 40 ],
41 'link_settings': { 41 'link_settings': {
42 'libraries': [ 42 'libraries': [
43 '-lrpcrt4.lib', 43 '-lrpcrt4.lib',
44 ], 44 ],
45 }, 45 },
46 'variables': {
47 'clang_warning_flags': [
48 '-Wno-incompatible-pointer-types',
49 ]
50 },
46 }, 51 },
47 ], 52 ],
48 } 53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698