| 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': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ], | 25 ], |
| 26 'defines': [ | 26 'defines': [ |
| 27 'ACCESSIBILITY_IMPLEMENTATION', | 27 'ACCESSIBILITY_IMPLEMENTATION', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 # All .cc, .h under accessibility, except unittests | 30 # All .cc, .h under accessibility, except unittests |
| 31 'ax_node.cc', | 31 'ax_node.cc', |
| 32 'ax_node.h', | 32 'ax_node.h', |
| 33 'ax_node_data.cc', | 33 'ax_node_data.cc', |
| 34 'ax_node_data.h', | 34 'ax_node_data.h', |
| 35 'ax_relative_bounds.cc', |
| 36 'ax_relative_bounds.h', |
| 35 'ax_serializable_tree.cc', | 37 'ax_serializable_tree.cc', |
| 36 'ax_serializable_tree.h', | 38 'ax_serializable_tree.h', |
| 37 'ax_text_utils.cc', | 39 'ax_text_utils.cc', |
| 38 'ax_text_utils.h', | 40 'ax_text_utils.h', |
| 39 'ax_tree.cc', | 41 'ax_tree.cc', |
| 40 'ax_tree.h', | 42 'ax_tree.h', |
| 41 'ax_tree_combiner.cc', | 43 'ax_tree_combiner.cc', |
| 42 'ax_tree_combiner.h', | 44 'ax_tree_combiner.h', |
| 43 'ax_tree_data.cc', | 45 'ax_tree_data.cc', |
| 44 'ax_tree_data.h', | 46 'ax_tree_data.h', |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 'type': 'none', | 220 'type': 'none', |
| 219 'variables': { | 221 'variables': { |
| 220 'source_file': 'ax_enums.idl', | 222 'source_file': 'ax_enums.idl', |
| 221 }, | 223 }, |
| 222 'includes': [ '../../build/android/java_cpp_enum.gypi' ], | 224 'includes': [ '../../build/android/java_cpp_enum.gypi' ], |
| 223 }, | 225 }, |
| 224 ], | 226 ], |
| 225 }], | 227 }], |
| 226 ], | 228 ], |
| 227 } | 229 } |
| OLD | NEW |