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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 ":ax_gen", | 74 ":ax_gen", |
75 "//base", | 75 "//base", |
76 "//ui/gfx", | 76 "//ui/gfx", |
77 "//ui/gfx/geometry", | 77 "//ui/gfx/geometry", |
78 ] | 78 ] |
79 | 79 |
80 if (is_win) { | 80 if (is_win) { |
81 public_deps += [ "//third_party/iaccessible2" ] | 81 public_deps += [ "//third_party/iaccessible2" ] |
82 } | 82 } |
83 | 83 |
84 if (use_aura && !is_chromeos && is_linux && use_x11) { | 84 if (use_atk) { |
85 sources += [ | 85 sources += [ |
86 "platform/atk_util_auralinux.cc", | 86 "platform/atk_util_auralinux.cc", |
87 "platform/atk_util_auralinux.h", | 87 "platform/atk_util_auralinux.h", |
88 "platform/ax_platform_node_auralinux.cc", | 88 "platform/ax_platform_node_auralinux.cc", |
89 "platform/ax_platform_node_auralinux.h", | 89 "platform/ax_platform_node_auralinux.h", |
90 ] | 90 ] |
91 | 91 |
92 configs += [ | 92 configs += [ |
93 ":atk", | 93 ":atk", |
94 ":atk_warnings", | 94 ":atk_warnings", |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 json_schema_api("ax_gen") { | 154 json_schema_api("ax_gen") { |
155 sources = [ | 155 sources = [ |
156 "ax_enums.idl", | 156 "ax_enums.idl", |
157 ] | 157 ] |
158 deps = [ | 158 deps = [ |
159 "//base/third_party/dynamic_annotations", | 159 "//base/third_party/dynamic_annotations", |
160 ] | 160 ] |
161 root_namespace = "ui" | 161 root_namespace = "ui" |
162 schemas = true | 162 schemas = true |
163 } | 163 } |
OLD | NEW |