OLD | NEW |
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 'export_dependent_settings': [ | 14 'export_dependent_settings': [ |
15 'ax_gen', | 15 'ax_gen', |
16 ], | 16 ], |
17 'hard_dependency': 1, | 17 'hard_dependency': 1, |
18 'dependencies': [ | 18 'dependencies': [ |
19 '../../base/base.gyp:base', | 19 '../../base/base.gyp:base', |
20 '../../base/base.gyp:base_i18n', | 20 '../../base/base.gyp:base_i18n', |
| 21 '../../skia/skia.gyp:skia', |
21 '../gfx/gfx.gyp:gfx', | 22 '../gfx/gfx.gyp:gfx', |
22 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
23 'ax_gen', | 24 'ax_gen', |
24 ], | 25 ], |
25 'defines': [ | 26 'defines': [ |
26 'ACCESSIBILITY_IMPLEMENTATION', | 27 'ACCESSIBILITY_IMPLEMENTATION', |
27 ], | 28 ], |
28 'sources': [ | 29 'sources': [ |
29 # All .cc, .h under accessibility, except unittests | 30 # All .cc, .h under accessibility, except unittests |
30 'ax_node.cc', | 31 'ax_node.cc', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'type': 'none', | 214 'type': 'none', |
214 'variables': { | 215 'variables': { |
215 'source_file': 'ax_enums.idl', | 216 'source_file': 'ax_enums.idl', |
216 }, | 217 }, |
217 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 218 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
218 }, | 219 }, |
219 ], | 220 ], |
220 }], | 221 }], |
221 ], | 222 ], |
222 } | 223 } |
OLD | NEW |