| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/json_schema_api.gni") | 7 import("//build/json_schema_api.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "platform/test_ax_node_wrapper.h", | 119 "platform/test_ax_node_wrapper.h", |
| 120 "tree_generator.cc", | 120 "tree_generator.cc", |
| 121 "tree_generator.h", | 121 "tree_generator.h", |
| 122 ] | 122 ] |
| 123 | 123 |
| 124 deps = [ | 124 deps = [ |
| 125 ":accessibility", | 125 ":accessibility", |
| 126 ] | 126 ] |
| 127 } | 127 } |
| 128 | 128 |
| 129 # TODO(GYP): Delete this after we've converted everything to GN. | |
| 130 # The _run targets exist only for compatibility w/ GYP. | |
| 131 group("accessibility_unittests_run") { | |
| 132 testonly = true | |
| 133 deps = [ | |
| 134 ":accessibility_unittests", | |
| 135 ] | |
| 136 } | |
| 137 | |
| 138 test("accessibility_unittests") { | 129 test("accessibility_unittests") { |
| 139 sources = [ | 130 sources = [ |
| 140 "ax_generated_tree_unittest.cc", | 131 "ax_generated_tree_unittest.cc", |
| 141 "ax_text_utils_unittest.cc", | 132 "ax_text_utils_unittest.cc", |
| 142 "ax_tree_serializer_unittest.cc", | 133 "ax_tree_serializer_unittest.cc", |
| 143 "ax_tree_unittest.cc", | 134 "ax_tree_unittest.cc", |
| 144 "platform/ax_platform_node_win_unittest.cc", | 135 "platform/ax_platform_node_win_unittest.cc", |
| 145 ] | 136 ] |
| 146 | 137 |
| 147 deps = [ | 138 deps = [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 163 json_schema_api("ax_gen") { | 154 json_schema_api("ax_gen") { |
| 164 sources = [ | 155 sources = [ |
| 165 "ax_enums.idl", | 156 "ax_enums.idl", |
| 166 ] | 157 ] |
| 167 deps = [ | 158 deps = [ |
| 168 "//base/third_party/dynamic_annotations", | 159 "//base/third_party/dynamic_annotations", |
| 169 ] | 160 ] |
| 170 root_namespace = "ui" | 161 root_namespace = "ui" |
| 171 schemas = true | 162 schemas = true |
| 172 } | 163 } |
| OLD | NEW |