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("//extensions/generated_extensions_api.gni") | 5 import("//build/json_schema_compile.gni") |
6 | 6 |
7 component("accessibility") { | 7 component("accessibility") { |
8 sources = [ | 8 sources = [ |
9 "ax_node.cc", | 9 "ax_node.cc", |
10 "ax_node.h", | 10 "ax_node.h", |
11 "ax_node_data.cc", | 11 "ax_node_data.cc", |
12 "ax_node_data.h", | 12 "ax_node_data.h", |
13 "ax_serializable_tree.cc", | 13 "ax_serializable_tree.cc", |
14 "ax_serializable_tree.h", | 14 "ax_serializable_tree.h", |
15 "ax_text_utils.cc", | 15 "ax_text_utils.cc", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 ":accessibility", | 64 ":accessibility", |
65 ":test_support", | 65 ":test_support", |
66 "//base", | 66 "//base", |
67 "//base/test:run_all_unittests", | 67 "//base/test:run_all_unittests", |
68 "//testing/gtest", | 68 "//testing/gtest", |
69 "//ui/gfx", | 69 "//ui/gfx", |
70 "//ui/gfx/geometry", | 70 "//ui/gfx/geometry", |
71 ] | 71 ] |
72 } | 72 } |
73 | 73 |
74 generated_extensions_api("ax_gen") { | 74 json_schema_compile("ax_gen") { |
brettw
2014/09/23 21:42:57
I wonder if we should pick a different name. I rec
| |
75 sources = [ "ax_enums.idl" ] | 75 sources = [ "ax_enums.idl" ] |
76 deps = [ "//base/third_party/dynamic_annotations" ] | 76 deps = [ "//base/third_party/dynamic_annotations" ] |
77 root_namespace = "ui" | 77 root_namespace = "ui" |
78 schemas = true | 78 schemas = true |
79 } | 79 } |
OLD | NEW |