OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 25 matching lines...) Expand all Loading... |
36 'ax_text_utils.h', | 36 'ax_text_utils.h', |
37 'ax_tree.cc', | 37 'ax_tree.cc', |
38 'ax_tree.h', | 38 'ax_tree.h', |
39 'ax_tree_serializer.cc', | 39 'ax_tree_serializer.cc', |
40 'ax_tree_serializer.h', | 40 'ax_tree_serializer.h', |
41 'ax_tree_source.h', | 41 'ax_tree_source.h', |
42 'ax_tree_update.cc', | 42 'ax_tree_update.cc', |
43 'ax_tree_update.h', | 43 'ax_tree_update.h', |
44 'ax_view_state.cc', | 44 'ax_view_state.cc', |
45 'ax_view_state.h', | 45 'ax_view_state.h', |
| 46 'platform/atk_util_auralinux.cc', |
| 47 'platform/atk_util_auralinux.h', |
46 'platform/ax_platform_node.cc', | 48 'platform/ax_platform_node.cc', |
47 'platform/ax_platform_node.h', | 49 'platform/ax_platform_node.h', |
| 50 'platform/ax_platform_node_auralinux.cc', |
| 51 'platform/ax_platform_node_auralinux.h', |
48 'platform/ax_platform_node_base.cc', | 52 'platform/ax_platform_node_base.cc', |
49 'platform/ax_platform_node_base.h', | 53 'platform/ax_platform_node_base.h', |
50 'platform/ax_platform_node_delegate.h', | 54 'platform/ax_platform_node_delegate.h', |
51 'platform/ax_platform_node_mac.h', | 55 'platform/ax_platform_node_mac.h', |
52 'platform/ax_platform_node_mac.mm', | 56 'platform/ax_platform_node_mac.mm', |
53 'platform/ax_platform_node_win.h', | 57 'platform/ax_platform_node_win.h', |
54 'platform/ax_platform_node_win.cc', | 58 'platform/ax_platform_node_win.cc', |
55 ], | 59 ], |
56 'conditions': [ | 60 'conditions': [ |
57 ['OS=="win"', { | 61 ['OS=="win"', { |
58 'dependencies': [ | 62 'dependencies': [ |
59 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' | 63 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' |
60 ], | 64 ], |
61 }], | 65 }], |
| 66 ['OS=="linux" and chromeos==0', { |
| 67 'dependencies': [ |
| 68 '../../build/linux/system.gyp:atk', |
| 69 '../../build/linux/system.gyp:gconf', |
| 70 '../../build/linux/system.gyp:glib', |
| 71 ], |
| 72 'variables': { |
| 73 'clang_warning_flags': [ |
| 74 # glib uses the pre-c++11 typedef-as-static_assert hack. |
| 75 '-Wno-unused-local-typedefs', |
| 76 ], |
| 77 }, |
| 78 }], |
| 79 ['OS!="linux" or chromeos==1', { |
| 80 'sources!': [ |
| 81 'platform/ax_platform_node_auralinux.cc', |
| 82 'platform/ax_platform_node_auralinux.h', |
| 83 'platform/atk_util_auralinux.cc', |
| 84 'platform/atk_util_auralinux.h', |
| 85 ], |
| 86 }], |
62 ], | 87 ], |
63 }, | 88 }, |
64 { | 89 { |
65 'target_name': 'accessibility_test_support', | 90 'target_name': 'accessibility_test_support', |
66 'type': 'static_library', | 91 'type': 'static_library', |
67 'dependencies': [ | 92 'dependencies': [ |
68 '../../base/base.gyp:base', | 93 '../../base/base.gyp:base', |
69 'accessibility' | 94 'accessibility' |
70 ], | 95 ], |
71 'sources': [ | 96 'sources': [ |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 'dependencies': [ | 177 'dependencies': [ |
153 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
154 ], | 179 ], |
155 }], | 180 }], |
156 ], | 181 ], |
157 }, | 182 }, |
158 ], | 183 ], |
159 }], | 184 }], |
160 ], | 185 ], |
161 } | 186 } |
OLD | NEW |