| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 | |
| 10 'targets': [ | |
| 11 { | |
| 12 'target_name': 'accessibility', | |
| 13 'type': '<(component)', | |
| 14 'hard_dependency': 1, | |
| 15 'dependencies': [ | |
| 16 '../../base/base.gyp:base', | |
| 17 '../gfx/gfx.gyp:gfx', | |
| 18 '../gfx/gfx.gyp:gfx_geometry', | |
| 19 ], | |
| 20 'defines': [ | |
| 21 'ACCESSIBILITY_IMPLEMENTATION', | |
| 22 ], | |
| 23 'sources': [ | |
| 24 # All .cc, .h under accessibility, except unittests | |
| 25 'ax_enums.cc', | |
| 26 'ax_enums.h', | |
| 27 'ax_node.cc', | |
| 28 'ax_node.h', | |
| 29 'ax_node_data.cc', | |
| 30 'ax_node_data.h', | |
| 31 'ax_serializable_tree.cc', | |
| 32 'ax_serializable_tree.h', | |
| 33 'ax_text_utils.cc', | |
| 34 'ax_text_utils.h', | |
| 35 'ax_tree.cc', | |
| 36 'ax_tree.h', | |
| 37 'ax_tree_serializer.cc', | |
| 38 'ax_tree_serializer.h', | |
| 39 'ax_tree_source.h', | |
| 40 'ax_tree_update.cc', | |
| 41 'ax_tree_update.h', | |
| 42 'ax_view_state.cc', | |
| 43 'ax_view_state.h', | |
| 44 'platform/ax_platform_node.cc', | |
| 45 'platform/ax_platform_node.h', | |
| 46 'platform/ax_platform_node_base.cc', | |
| 47 'platform/ax_platform_node_base.h', | |
| 48 'platform/ax_platform_node_delegate.h', | |
| 49 'platform/ax_platform_node_mac.h', | |
| 50 'platform/ax_platform_node_mac.mm', | |
| 51 ] | |
| 52 }, | |
| 53 { | |
| 54 'target_name': 'accessibility_test_support', | |
| 55 'type': 'static_library', | |
| 56 'dependencies': [ | |
| 57 '../../base/base.gyp:base', | |
| 58 'accessibility' | |
| 59 ], | |
| 60 'sources': [ | |
| 61 'tree_generator.cc', | |
| 62 'tree_generator.h' | |
| 63 ] | |
| 64 }, | |
| 65 { | |
| 66 'target_name': 'accessibility_unittests', | |
| 67 'type': 'executable', | |
| 68 'dependencies': [ | |
| 69 '../../base/base.gyp:base', | |
| 70 '../../base/base.gyp:run_all_unittests', | |
| 71 '../../testing/gtest.gyp:gtest', | |
| 72 '../gfx/gfx.gyp:gfx', | |
| 73 '../gfx/gfx.gyp:gfx_geometry', | |
| 74 'accessibility', | |
| 75 'accessibility_test_support', | |
| 76 ], | |
| 77 'sources': [ | |
| 78 'ax_generated_tree_unittest.cc', | |
| 79 'ax_tree_serializer_unittest.cc', | |
| 80 'ax_tree_unittest.cc', | |
| 81 ] | |
| 82 }, | |
| 83 ], | |
| 84 } | |
| OLD | NEW |