| 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 16 matching lines...) Expand all Loading... |
| 27 'OutputDirectory': '<(midl_out_dir)', | 27 'OutputDirectory': '<(midl_out_dir)', |
| 28 'DLLDataFileName': 'dlldata.c', | 28 'DLLDataFileName': 'dlldata.c', |
| 29 }, | 29 }, |
| 30 }, | 30 }, |
| 31 'direct_dependent_settings': { | 31 'direct_dependent_settings': { |
| 32 'include_dirs': [ | 32 'include_dirs': [ |
| 33 '<(SHARED_INTERMEDIATE_DIR)', | 33 '<(SHARED_INTERMEDIATE_DIR)', |
| 34 ], | 34 ], |
| 35 }, | 35 }, |
| 36 }, | 36 }, |
| 37 { | |
| 38 'target_name': 'IAccessible2Proxy', | |
| 39 'type': 'shared_library', | |
| 40 'defines': [ 'REGISTER_PROXY_DLL' ], | |
| 41 'dependencies': [ 'iaccessible2' ], | |
| 42 'sources': [ | |
| 43 'IAccessible2Proxy.def', | |
| 44 '<(midl_out_dir)/dlldata.c', | |
| 45 '<(midl_out_dir)/ia2_api_all_p.c', | |
| 46 ], | |
| 47 'link_settings': { | |
| 48 'libraries': [ | |
| 49 '-lrpcrt4.lib', | |
| 50 ], | |
| 51 }, | |
| 52 'variables': { | |
| 53 'clang_warning_flags': [ | |
| 54 '-Wno-incompatible-pointer-types', | |
| 55 ] | |
| 56 }, | |
| 57 }, | |
| 58 ], | 37 ], |
| 59 } | 38 } |
| OLD | NEW |