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 'msvs_guid': 'C974E070-3787-490A-87B0-E333B06CA1E2', | |
21 'sources': [ | 20 'sources': [ |
22 'ia2_api_all.idl', | 21 'ia2_api_all.idl', |
23 '<(INTERMEDIATE_DIR)/ia2_api_all.h', | 22 '<(INTERMEDIATE_DIR)/ia2_api_all.h', |
24 '<(INTERMEDIATE_DIR)/ia2_api_all_i.c', | 23 '<(INTERMEDIATE_DIR)/ia2_api_all_i.c', |
25 '<(INTERMEDIATE_DIR)/ia2_api_all_p.c', | 24 '<(INTERMEDIATE_DIR)/ia2_api_all_p.c', |
26 ], | 25 ], |
27 'hard_dependency': 1, | 26 'hard_dependency': 1, |
28 'direct_dependent_settings': { | 27 'direct_dependent_settings': { |
29 'include_dirs': [ | 28 'include_dirs': [ |
30 # Bit of a hack to work around the built in vstudio rule. | 29 # Bit of a hack to work around the built in vstudio rule. |
31 '<(INTERMEDIATE_DIR)/../iaccessible2', | 30 '<(INTERMEDIATE_DIR)/../iaccessible2', |
32 ], | 31 ], |
33 }, | 32 }, |
34 }, | 33 }, |
35 { | 34 { |
36 'target_name': 'IAccessible2Proxy', | 35 'target_name': 'IAccessible2Proxy', |
37 'type': 'shared_library', | 36 'type': 'shared_library', |
38 'msvs_guid': '39B1D9D7-7405-42D7-B76F-D26F13E7610E', | |
39 'defines': [ 'REGISTER_PROXY_DLL' ], | 37 'defines': [ 'REGISTER_PROXY_DLL' ], |
40 'dependencies': [ 'iaccessible2' ], | 38 'dependencies': [ 'iaccessible2' ], |
41 'sources': [ | 39 'sources': [ |
42 'IAccessible2Proxy.def', | 40 'IAccessible2Proxy.def', |
43 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', | 41 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', |
44 ], | 42 ], |
45 'link_settings': { | 43 'link_settings': { |
46 'libraries': [ | 44 'libraries': [ |
47 '-lrpcrt4.lib', | 45 '-lrpcrt4.lib', |
48 ], | 46 ], |
49 }, | 47 }, |
50 }, | 48 }, |
51 ], | 49 ], |
52 } | 50 } |
53 | 51 |
54 # Local Variables: | 52 # Local Variables: |
55 # tab-width:2 | 53 # tab-width:2 |
56 # indent-tabs-mode:nil | 54 # indent-tabs-mode:nil |
57 # End: | 55 # End: |
58 # vim: set expandtab tabstop=2 shiftwidth=2: | 56 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |