| 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 android_library("ui_accessibility_java") { |
| 70 deps = [] |
| 71 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 72 } |
| 73 |
| 74 java_cpp_enum("ax_enumerations_srcjar") { |
| 75 sources = [ |
| 76 "ax_enums.idl", |
| 77 ] |
| 78 outputs = [ |
| 79 "org/chromium/ui/accessibility/AXTextStyle.java", |
| 80 ] |
| 81 } |
| 82 |
| 69 source_set("test_support") { | 83 source_set("test_support") { |
| 70 sources = [ | 84 sources = [ |
| 71 "platform/test_ax_node_wrapper.cc", | 85 "platform/test_ax_node_wrapper.cc", |
| 72 "platform/test_ax_node_wrapper.h", | 86 "platform/test_ax_node_wrapper.h", |
| 73 "tree_generator.cc", | 87 "tree_generator.cc", |
| 74 "tree_generator.h", | 88 "tree_generator.h", |
| 75 ] | 89 ] |
| 76 | 90 |
| 77 deps = [ | 91 deps = [ |
| 78 ":accessibility", | 92 ":accessibility", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 106 json_schema_api("ax_gen") { | 120 json_schema_api("ax_gen") { |
| 107 sources = [ | 121 sources = [ |
| 108 "ax_enums.idl", | 122 "ax_enums.idl", |
| 109 ] | 123 ] |
| 110 deps = [ | 124 deps = [ |
| 111 "//base/third_party/dynamic_annotations", | 125 "//base/third_party/dynamic_annotations", |
| 112 ] | 126 ] |
| 113 root_namespace = "ui" | 127 root_namespace = "ui" |
| 114 schemas = true | 128 schemas = true |
| 115 } | 129 } |
| OLD | NEW |