| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 sources += [ | 90 sources += [ |
| 91 "platform/atk_util_auralinux.cc", | 91 "platform/atk_util_auralinux.cc", |
| 92 "platform/atk_util_auralinux.h", | 92 "platform/atk_util_auralinux.h", |
| 93 "platform/ax_platform_node_auralinux.cc", | 93 "platform/ax_platform_node_auralinux.cc", |
| 94 "platform/ax_platform_node_auralinux.h", | 94 "platform/ax_platform_node_auralinux.h", |
| 95 ] | 95 ] |
| 96 | 96 |
| 97 configs += [ | 97 configs += [ |
| 98 ":atk", | 98 ":atk", |
| 99 ":atk_warnings", | 99 ":atk_warnings", |
| 100 "//build/config/linux:gconf", | 100 "//build/config/linux/gconf", |
| 101 "//build/config/linux:glib", | 101 "//build/config/linux:glib", |
| 102 ] | 102 ] |
| 103 } | 103 } |
| 104 } | 104 } |
| 105 | 105 |
| 106 if (is_android) { | 106 if (is_android) { |
| 107 android_library("ui_accessibility_java") { | 107 android_library("ui_accessibility_java") { |
| 108 deps = [] | 108 deps = [] |
| 109 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 109 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 110 } | 110 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 json_schema_api("ax_gen") { | 159 json_schema_api("ax_gen") { |
| 160 sources = [ | 160 sources = [ |
| 161 "ax_enums.idl", | 161 "ax_enums.idl", |
| 162 ] | 162 ] |
| 163 deps = [ | 163 deps = [ |
| 164 "//base/third_party/dynamic_annotations", | 164 "//base/third_party/dynamic_annotations", |
| 165 ] | 165 ] |
| 166 root_namespace = "ui" | 166 root_namespace = "ui" |
| 167 schemas = true | 167 schemas = true |
| 168 } | 168 } |
| OLD | NEW |