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 20 matching lines...) Expand all Loading... |
31 'ui_resources', | 31 'ui_resources', |
32 ], | 32 ], |
33 'defines': [ | 33 'defines': [ |
34 'UI_IMPLEMENTATION', | 34 'UI_IMPLEMENTATION', |
35 ], | 35 ], |
36 'export_dependent_settings': [ | 36 'export_dependent_settings': [ |
37 '../net/net.gyp:net', | 37 '../net/net.gyp:net', |
38 'gfx/gfx.gyp:gfx', | 38 'gfx/gfx.gyp:gfx', |
39 ], | 39 ], |
40 'sources' : [ | 40 'sources' : [ |
| 41 'accessibility/ax_enums.h', |
| 42 'accessibility/ax_node.cc', |
| 43 'accessibility/ax_node_data.cc', |
| 44 'accessibility/ax_node_data.h', |
| 45 'accessibility/ax_node.h', |
| 46 'accessibility/ax_serializable_tree.cc', |
| 47 'accessibility/ax_serializable_tree.h', |
| 48 'accessibility/ax_tree.cc', |
| 49 'accessibility/ax_tree.h', |
| 50 'accessibility/ax_tree_serializer.cc', |
| 51 'accessibility/ax_tree_serializer.h', |
| 52 'accessibility/ax_tree_source.h', |
| 53 'accessibility/ax_tree_update.cc', |
| 54 'accessibility/ax_tree_update.h', |
41 'base/accelerators/accelerator.cc', | 55 'base/accelerators/accelerator.cc', |
42 'base/accelerators/accelerator.h', | 56 'base/accelerators/accelerator.h', |
43 'base/accelerators/accelerator_manager.cc', | 57 'base/accelerators/accelerator_manager.cc', |
44 'base/accelerators/accelerator_manager.h', | 58 'base/accelerators/accelerator_manager.h', |
45 'base/accelerators/menu_label_accelerator_util_linux.cc', | 59 'base/accelerators/menu_label_accelerator_util_linux.cc', |
46 'base/accelerators/menu_label_accelerator_util_linux.h', | 60 'base/accelerators/menu_label_accelerator_util_linux.h', |
47 'base/accelerators/platform_accelerator.h', | 61 'base/accelerators/platform_accelerator.h', |
48 'base/accelerators/platform_accelerator_cocoa.h', | 62 'base/accelerators/platform_accelerator_cocoa.h', |
49 'base/accelerators/platform_accelerator_cocoa.mm', | 63 'base/accelerators/platform_accelerator_cocoa.mm', |
50 'base/accelerators/platform_accelerator_gtk.cc', | 64 'base/accelerators/platform_accelerator_gtk.cc', |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
707 'xcode_settings': { | 721 'xcode_settings': { |
708 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', | 722 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
709 }, | 723 }, |
710 }], | 724 }], |
711 ], | 725 ], |
712 }, | 726 }, |
713 ], | 727 ], |
714 }], | 728 }], |
715 ], | 729 ], |
716 } | 730 } |
OLD | NEW |