| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 if (is_android) { | 102 if (is_android) { |
| 103 android_library("ui_accessibility_java") { | 103 android_library("ui_accessibility_java") { |
| 104 deps = [] | 104 deps = [] |
| 105 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 105 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 106 } | 106 } |
| 107 | 107 |
| 108 java_cpp_enum("ax_enumerations_srcjar") { | 108 java_cpp_enum("ax_enumerations_srcjar") { |
| 109 sources = [ | 109 sources = [ |
| 110 "ax_enums.idl", | 110 "ax_enums.idl", |
| 111 ] | 111 ] |
| 112 outputs = [ | |
| 113 "org/chromium/ui/accessibility/AXTextStyle.java", | |
| 114 ] | |
| 115 } | 112 } |
| 116 } | 113 } |
| 117 | 114 |
| 118 source_set("test_support") { | 115 source_set("test_support") { |
| 119 sources = [ | 116 sources = [ |
| 120 "platform/test_ax_node_wrapper.cc", | 117 "platform/test_ax_node_wrapper.cc", |
| 121 "platform/test_ax_node_wrapper.h", | 118 "platform/test_ax_node_wrapper.h", |
| 122 "tree_generator.cc", | 119 "tree_generator.cc", |
| 123 "tree_generator.h", | 120 "tree_generator.h", |
| 124 ] | 121 ] |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 json_schema_api("ax_gen") { | 161 json_schema_api("ax_gen") { |
| 165 sources = [ | 162 sources = [ |
| 166 "ax_enums.idl", | 163 "ax_enums.idl", |
| 167 ] | 164 ] |
| 168 deps = [ | 165 deps = [ |
| 169 "//base/third_party/dynamic_annotations", | 166 "//base/third_party/dynamic_annotations", |
| 170 ] | 167 ] |
| 171 root_namespace = "ui" | 168 root_namespace = "ui" |
| 172 schemas = true | 169 schemas = true |
| 173 } | 170 } |
| OLD | NEW |