| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 116 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 117 } | 117 } |
| 118 | 118 |
| 119 java_cpp_enum("ax_enumerations_srcjar") { | 119 java_cpp_enum("ax_enumerations_srcjar") { |
| 120 sources = [ | 120 sources = [ |
| 121 "ax_enums.idl", | 121 "ax_enums.idl", |
| 122 ] | 122 ] |
| 123 } | 123 } |
| 124 } | 124 } |
| 125 | 125 |
| 126 source_set("test_support") { | 126 static_library("test_support") { |
| 127 sources = [ | 127 sources = [ |
| 128 "platform/test_ax_node_wrapper.cc", | 128 "platform/test_ax_node_wrapper.cc", |
| 129 "platform/test_ax_node_wrapper.h", | 129 "platform/test_ax_node_wrapper.h", |
| 130 "tree_generator.cc", | 130 "tree_generator.cc", |
| 131 "tree_generator.h", | 131 "tree_generator.h", |
| 132 ] | 132 ] |
| 133 | 133 |
| 134 deps = [ | 134 deps = [ |
| 135 ":accessibility", | 135 ":accessibility", |
| 136 ] | 136 ] |
| (...skipping 29 matching lines...) Expand all Loading... |
| 166 json_schema_api("ax_gen") { | 166 json_schema_api("ax_gen") { |
| 167 sources = [ | 167 sources = [ |
| 168 "ax_enums.idl", | 168 "ax_enums.idl", |
| 169 ] | 169 ] |
| 170 deps = [ | 170 deps = [ |
| 171 "//base/third_party/dynamic_annotations", | 171 "//base/third_party/dynamic_annotations", |
| 172 ] | 172 ] |
| 173 root_namespace = "ui" | 173 root_namespace = "ui" |
| 174 schemas = true | 174 schemas = true |
| 175 } | 175 } |
| OLD | NEW |