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