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

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

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 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 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 9
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'accessibility', 12 'target_name': 'accessibility',
13 'type': '<(component)', 13 'type': '<(component)',
14 'dependencies': [ 14 'dependencies': [
15 '../../base/base.gyp:base', 15 '../../base/base.gyp:base',
16 '../gfx/gfx.gyp:gfx', 16 '../gfx/gfx.gyp:gfx',
17 '../gfx/gfx.gyp:gfx_geometry',
17 ], 18 ],
18 'defines': [ 19 'defines': [
19 'ACCESSIBILITY_IMPLEMENTATION', 20 'ACCESSIBILITY_IMPLEMENTATION',
20 ], 21 ],
21 'sources': [ 22 'sources': [
22 # All .cc, .h under accessibility, except unittests 23 # All .cc, .h under accessibility, except unittests
23 'ax_enums.h', 24 'ax_enums.h',
24 'ax_node.cc', 25 'ax_node.cc',
25 'ax_node_data.cc', 26 'ax_node_data.cc',
26 'ax_node_data.h', 27 'ax_node_data.h',
(...skipping 18 matching lines...) Expand all
45 '../../testing/gtest.gyp:gtest', 46 '../../testing/gtest.gyp:gtest',
46 'accessibility', 47 'accessibility',
47 ], 48 ],
48 'sources': [ 49 'sources': [
49 'ax_tree_serializer_unittest.cc', 50 'ax_tree_serializer_unittest.cc',
50 'ax_tree_unittest.cc', 51 'ax_tree_unittest.cc',
51 ] 52 ]
52 }, 53 },
53 ], 54 ],
54 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698