Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: third_party/iaccessible2/iaccessible2.gyp

Issue 1521443002: Remove IAccessible2Proxy (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/iaccessible2/README.chromium ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « third_party/iaccessible2/README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698