OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': { |
(...skipping 20 matching lines...) Expand all Loading... | |
31 }, | 31 }, |
32 }, | 32 }, |
33 { | 33 { |
34 'target_name': 'IAccessible2Proxy', | 34 'target_name': 'IAccessible2Proxy', |
35 'type': 'shared_library', | 35 'type': 'shared_library', |
36 'defines': [ 'REGISTER_PROXY_DLL' ], | 36 'defines': [ 'REGISTER_PROXY_DLL' ], |
37 'dependencies': [ 'iaccessible2' ], | 37 'dependencies': [ 'iaccessible2' ], |
38 'sources': [ | 38 'sources': [ |
39 'IAccessible2Proxy.def', | 39 'IAccessible2Proxy.def', |
40 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', | 40 '<(INTERMEDIATE_DIR)/../iaccessible2/dlldata.c', |
41 '<(INTERMEDIATE_DIR)/../iaccessible2/ia2_api_all_p.c', | |
Ryan Sleevi
2011/08/13 03:44:57
is _p.c generated by this target? Or is it still g
| |
41 ], | 42 ], |
42 'link_settings': { | 43 'link_settings': { |
43 'libraries': [ | 44 'libraries': [ |
44 '-lrpcrt4.lib', | 45 '-lrpcrt4.lib', |
45 ], | 46 ], |
46 }, | 47 }, |
47 }, | 48 }, |
48 ], | 49 ], |
49 } | 50 } |
OLD | NEW |