Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: ui/accessibility/accessibility.gyp

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/accessibility/OWNERS ('k') | ui/accessibility/ax_enums.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « ui/accessibility/OWNERS ('k') | ui/accessibility/ax_enums.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698