| 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/ax_platform_node.cc', |
| 47 'platform/ax_platform_node.h', |
| 48 'platform/ax_platform_node_base.cc', |
| 49 'platform/ax_platform_node_base.h', |
| 50 'platform/ax_platform_node_delegate.h', |
| 51 'platform/ax_platform_node_mac.h', |
| 52 'platform/ax_platform_node_mac.mm', |
| 46 ] | 53 ] |
| 47 }, | 54 }, |
| 48 { | 55 { |
| 49 'target_name': 'accessibility_test_support', | 56 'target_name': 'accessibility_test_support', |
| 50 'type': 'static_library', | 57 'type': 'static_library', |
| 51 'dependencies': [ | 58 'dependencies': [ |
| 52 '../../base/base.gyp:base', | 59 '../../base/base.gyp:base', |
| 53 'accessibility' | 60 'accessibility' |
| 54 ], | 61 ], |
| 55 'sources': [ | 62 'sources': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ], | 107 ], |
| 101 'non_compiled_schema_files': [], | 108 'non_compiled_schema_files': [], |
| 102 'cc_dir': 'ui/accessibility', | 109 'cc_dir': 'ui/accessibility', |
| 103 # TODO(dtseng): Change this once all files under ui/accessibility | 110 # TODO(dtseng): Change this once all files under ui/accessibility |
| 104 # namespaced under ui::ax. | 111 # namespaced under ui::ax. |
| 105 'root_namespace': '', | 112 'root_namespace': '', |
| 106 }, | 113 }, |
| 107 }, | 114 }, |
| 108 ], | 115 ], |
| 109 } | 116 } |
| OLD | NEW |