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 '../gfx/gfx.gyp:gfx', | 21 '../gfx/gfx.gyp:gfx', |
21 '../gfx/gfx.gyp:gfx_geometry', | 22 '../gfx/gfx.gyp:gfx_geometry', |
22 'ax_gen', | 23 'ax_gen', |
23 ], | 24 ], |
24 'defines': [ | 25 'defines': [ |
25 'ACCESSIBILITY_IMPLEMENTATION', | 26 'ACCESSIBILITY_IMPLEMENTATION', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 # All .cc, .h under accessibility, except unittests | 29 # All .cc, .h under accessibility, except unittests |
29 'ax_node.cc', | 30 'ax_node.cc', |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 'type': 'none', | 212 'type': 'none', |
212 'variables': { | 213 'variables': { |
213 'source_file': 'ax_enums.idl', | 214 'source_file': 'ax_enums.idl', |
214 }, | 215 }, |
215 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 216 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
216 }, | 217 }, |
217 ], | 218 ], |
218 }], | 219 }], |
219 ], | 220 ], |
220 } | 221 } |
OLD | NEW |