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

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

Issue 67283004: First step to move common accessibility code out of content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Git rid of AX_EXPORT from templatized function Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « ui/accessibility/DEPS ('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 (c) 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 'dependencies': [
15 '../../base/base.gyp:base',
16 '../gfx/gfx.gyp:gfx',
17 ],
18 'defines': [
19 'ACCESSIBILITY_IMPLEMENTATION',
20 ],
21 'sources': [
22 # All .cc, .h under accessibility, except unittests
23 'ax_enums.h',
24 'ax_node.cc',
25 'ax_node_data.cc',
26 'ax_node_data.h',
27 'ax_node.h',
28 'ax_serializable_tree.cc',
29 'ax_serializable_tree.h',
30 'ax_tree.cc',
31 'ax_tree.h',
32 'ax_tree_serializer.cc',
33 'ax_tree_serializer.h',
34 'ax_tree_source.h',
35 'ax_tree_update.cc',
36 'ax_tree_update.h',
37 ]
38 },
39 {
40 'target_name': 'accessibility_unittests',
41 'type': 'executable',
42 'dependencies': [
43 '../../base/base.gyp:base',
44 '../../base/base.gyp:test_support_base',
45 '../../testing/gtest.gyp:gtest',
46 '../../testing/gtest.gyp:gtest_main',
47 'accessibility',
48 ],
49 'sources': [
50 'ax_tree_unittest.cc',
51 ]
52 },
53 ],
54 }
OLDNEW
« no previous file with comments | « ui/accessibility/DEPS ('k') | ui/accessibility/ax_enums.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698