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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//build/json_schema_api.gni") | 6 import("//build/json_schema_api.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 component("accessibility") { | 9 component("accessibility") { |
10 sources = [ | 10 sources = [ |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 configs += [ | 60 configs += [ |
61 "//build/config/linux:atk", | 61 "//build/config/linux:atk", |
62 "//build/config/linux:atk_warnings", | 62 "//build/config/linux:atk_warnings", |
63 "//build/config/linux:gconf", | 63 "//build/config/linux:gconf", |
64 "//build/config/linux:glib", | 64 "//build/config/linux:glib", |
65 ] | 65 ] |
66 } | 66 } |
67 } | 67 } |
68 | 68 |
| 69 if (is_android) { |
| 70 java_cpp_enum("ax_enumerations_srcjar") { |
| 71 sources = [ |
| 72 "ax_enums.idl", |
| 73 ] |
| 74 outputs = [ |
| 75 "org/chromium/ui/accessibility/AXTextStyle.java", |
| 76 ] |
| 77 } |
| 78 } |
| 79 |
69 source_set("test_support") { | 80 source_set("test_support") { |
70 sources = [ | 81 sources = [ |
71 "platform/test_ax_node_wrapper.cc", | 82 "platform/test_ax_node_wrapper.cc", |
72 "platform/test_ax_node_wrapper.h", | 83 "platform/test_ax_node_wrapper.h", |
73 "tree_generator.cc", | 84 "tree_generator.cc", |
74 "tree_generator.h", | 85 "tree_generator.h", |
75 ] | 86 ] |
76 | 87 |
77 deps = [ | 88 deps = [ |
78 ":accessibility", | 89 ":accessibility", |
(...skipping 27 matching lines...) Expand all Loading... |
106 json_schema_api("ax_gen") { | 117 json_schema_api("ax_gen") { |
107 sources = [ | 118 sources = [ |
108 "ax_enums.idl", | 119 "ax_enums.idl", |
109 ] | 120 ] |
110 deps = [ | 121 deps = [ |
111 "//base/third_party/dynamic_annotations", | 122 "//base/third_party/dynamic_annotations", |
112 ] | 123 ] |
113 root_namespace = "ui" | 124 root_namespace = "ui" |
114 schemas = true | 125 schemas = true |
115 } | 126 } |
OLD | NEW |