| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 ":atk", | 105 ":atk", |
| 106 ":atk_warnings", | 106 ":atk_warnings", |
| 107 "//build/config/linux/gconf", | 107 "//build/config/linux/gconf", |
| 108 "//build/config/linux:glib", | 108 "//build/config/linux:glib", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 } | 111 } |
| 112 | 112 |
| 113 if (is_android) { | 113 if (is_android) { |
| 114 android_library("ui_accessibility_java") { | 114 android_library("ui_accessibility_java") { |
| 115 deps = [] | 115 deps = [ |
| 116 "//third_party/android_tools:android_support_annotations_java", |
| 117 ] |
| 116 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 118 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 117 } | 119 } |
| 118 | 120 |
| 119 java_cpp_enum("ax_enumerations_srcjar") { | 121 java_cpp_enum("ax_enumerations_srcjar") { |
| 120 sources = [ | 122 sources = [ |
| 121 "ax_enums.idl", | 123 "ax_enums.idl", |
| 122 ] | 124 ] |
| 123 } | 125 } |
| 124 } | 126 } |
| 125 | 127 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 json_schema_api("ax_gen") { | 168 json_schema_api("ax_gen") { |
| 167 sources = [ | 169 sources = [ |
| 168 "ax_enums.idl", | 170 "ax_enums.idl", |
| 169 ] | 171 ] |
| 170 deps = [ | 172 deps = [ |
| 171 "//base/third_party/dynamic_annotations", | 173 "//base/third_party/dynamic_annotations", |
| 172 ] | 174 ] |
| 173 root_namespace = "ui" | 175 root_namespace = "ui" |
| 174 schemas = true | 176 schemas = true |
| 175 } | 177 } |
| OLD | NEW |