OLD | NEW |
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...) Loading... |
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 } |
OLD | NEW |