| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/json_schema_api.gni") | 8 import("//build/json_schema_api.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 component("accessibility") { | 42 component("accessibility") { |
| 43 sources = [ | 43 sources = [ |
| 44 "ax_node.cc", | 44 "ax_node.cc", |
| 45 "ax_node.h", | 45 "ax_node.h", |
| 46 "ax_node_data.cc", | 46 "ax_node_data.cc", |
| 47 "ax_node_data.h", | 47 "ax_node_data.h", |
| 48 "ax_relative_bounds.cc", |
| 49 "ax_relative_bounds.h", |
| 48 "ax_serializable_tree.cc", | 50 "ax_serializable_tree.cc", |
| 49 "ax_serializable_tree.h", | 51 "ax_serializable_tree.h", |
| 50 "ax_text_utils.cc", | 52 "ax_text_utils.cc", |
| 51 "ax_text_utils.h", | 53 "ax_text_utils.h", |
| 52 "ax_tree.cc", | 54 "ax_tree.cc", |
| 53 "ax_tree.h", | 55 "ax_tree.h", |
| 54 "ax_tree_combiner.cc", | 56 "ax_tree_combiner.cc", |
| 55 "ax_tree_combiner.h", | 57 "ax_tree_combiner.h", |
| 56 "ax_tree_data.cc", | 58 "ax_tree_data.cc", |
| 57 "ax_tree_data.h", | 59 "ax_tree_data.h", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 json_schema_api("ax_gen") { | 177 json_schema_api("ax_gen") { |
| 176 sources = [ | 178 sources = [ |
| 177 "ax_enums.idl", | 179 "ax_enums.idl", |
| 178 ] | 180 ] |
| 179 deps = [ | 181 deps = [ |
| 180 "//base/third_party/dynamic_annotations", | 182 "//base/third_party/dynamic_annotations", |
| 181 ] | 183 ] |
| 182 root_namespace = "ui" | 184 root_namespace = "ui" |
| 183 schemas = true | 185 schemas = true |
| 184 } | 186 } |
| OLD | NEW |