OLD | NEW |
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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ui_resources.gypi', | 10 'ui_resources.gypi', |
(...skipping 24 matching lines...) Expand all Loading... |
35 ], | 35 ], |
36 # Export these dependencies since text_elider.h includes ICU headers. | 36 # Export these dependencies since text_elider.h includes ICU headers. |
37 'export_dependent_settings': [ | 37 'export_dependent_settings': [ |
38 '../net/net.gyp:net', | 38 '../net/net.gyp:net', |
39 '../third_party/icu/icu.gyp:icui18n', | 39 '../third_party/icu/icu.gyp:icui18n', |
40 '../third_party/icu/icu.gyp:icuuc', | 40 '../third_party/icu/icu.gyp:icuuc', |
41 'events/events.gyp:events', | 41 'events/events.gyp:events', |
42 'gfx/gfx.gyp:gfx', | 42 'gfx/gfx.gyp:gfx', |
43 ], | 43 ], |
44 'sources' : [ | 44 'sources' : [ |
| 45 'accessibility/ax_node.cc', |
| 46 'accessibility/ax_node_data.cc', |
| 47 'accessibility/ax_node_data.h', |
| 48 'accessibility/ax_node.h', |
| 49 'accessibility/ax_roles.h', |
| 50 'accessibility/ax_tree.cc', |
| 51 'accessibility/ax_tree.h', |
| 52 'accessibility/ax_tree_serializer.cc', |
| 53 'accessibility/ax_tree_serializer.h', |
| 54 'accessibility/ax_tree_source.h', |
| 55 'accessibility/ax_tree_update.cc', |
| 56 'accessibility/ax_tree_update.h', |
45 'base/accelerators/accelerator.cc', | 57 'base/accelerators/accelerator.cc', |
46 'base/accelerators/accelerator.h', | 58 'base/accelerators/accelerator.h', |
47 'base/accelerators/accelerator_manager.cc', | 59 'base/accelerators/accelerator_manager.cc', |
48 'base/accelerators/accelerator_manager.h', | 60 'base/accelerators/accelerator_manager.h', |
49 'base/accelerators/menu_label_accelerator_util_linux.cc', | 61 'base/accelerators/menu_label_accelerator_util_linux.cc', |
50 'base/accelerators/menu_label_accelerator_util_linux.h', | 62 'base/accelerators/menu_label_accelerator_util_linux.h', |
51 'base/accelerators/platform_accelerator.h', | 63 'base/accelerators/platform_accelerator.h', |
52 'base/accelerators/platform_accelerator_cocoa.h', | 64 'base/accelerators/platform_accelerator_cocoa.h', |
53 'base/accelerators/platform_accelerator_cocoa.mm', | 65 'base/accelerators/platform_accelerator_cocoa.mm', |
54 'base/accelerators/platform_accelerator_gtk.cc', | 66 'base/accelerators/platform_accelerator_gtk.cc', |
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 'xcode_settings': { | 732 'xcode_settings': { |
721 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', | 733 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
722 }, | 734 }, |
723 }], | 735 }], |
724 ], | 736 ], |
725 }, | 737 }, |
726 ], | 738 ], |
727 }], | 739 }], |
728 ], | 740 ], |
729 } | 741 } |
OLD | NEW |