| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 | 9 |
| 10 'target_defaults': { | 10 'target_defaults': { |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '.', | 12 '.', |
| 13 '<(INTERMEDIATE_DIR)', | 13 '<(INTERMEDIATE_DIR)', |
| 14 ], | 14 ], |
| 15 }, | 15 }, |
| 16 'targets': [ | 16 'targets': [ |
| 17 { | 17 { |
| 18 'target_name': 'iaccessible2', | 18 'target_name': 'iaccessible2', |
| 19 'type': 'static_library', | 19 'type': 'static_library', |
| 20 'sources': [ | 20 'sources': [ |
| 21 'ia2_api_all.idl', | 21 'ia2_api_all.idl', |
| 22 '<(INTERMEDIATE_DIR)/ia2_api_all.h', | 22 '<(INTERMEDIATE_DIR)/ia2_api_all.h', |
| 23 '<(INTERMEDIATE_DIR)/ia2_api_all_i.c', | 23 '<(INTERMEDIATE_DIR)/ia2_api_all_i.c', |
| 24 '<(INTERMEDIATE_DIR)/ia2_api_all_p.c', | |
| 25 ], | 24 ], |
| 26 'hard_dependency': 1, | 25 'hard_dependency': 1, |
| 27 'direct_dependent_settings': { | 26 'direct_dependent_settings': { |
| 28 'include_dirs': [ | 27 'include_dirs': [ |
| 29 # Bit of a hack to work around the built in vstudio rule. | 28 # Bit of a hack to work around the built in vstudio rule. |
| 30 '<(INTERMEDIATE_DIR)/../iaccessible2', | 29 '<(INTERMEDIATE_DIR)/../iaccessible2', |
| 31 ], | 30 ], |
| 32 }, | 31 }, |
| 33 }, | 32 }, |
| 34 { | 33 { |
| 35 'target_name': 'IAccessible2Proxy', | 34 'target_name': 'IAccessible2Proxy', |
| 36 'type': 'shared_library', | 35 'type': 'shared_library', |
| 37 'defines': [ 'REGISTER_PROXY_DLL' ], | 36 'defines': [ 'REGISTER_PROXY_DLL' ], |
| 38 'dependencies': [ 'iaccessible2' ], | 37 'dependencies': [ 'iaccessible2' ], |
| 39 'sources': [ | 38 'sources': [ |
| 40 'IAccessible2Proxy.def', | 39 'IAccessible2Proxy.def', |
| 41 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', | 40 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', |
| 42 ], | 41 ], |
| 43 'link_settings': { | 42 'link_settings': { |
| 44 'libraries': [ | 43 'libraries': [ |
| 45 '-lrpcrt4.lib', | 44 '-lrpcrt4.lib', |
| 46 ], | 45 ], |
| 47 }, | 46 }, |
| 48 }, | 47 }, |
| 49 ], | 48 ], |
| 50 } | 49 } |
| OLD | NEW |