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/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/json_schema_compiler/json_schema_api.gni") | 10 import("//tools/json_schema_compiler/json_schema_api.gni") |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 += [ "//build/config/linux/atk" ] | 92 configs += [ "//build/config/linux/atk" ] |
93 | 93 |
94 if (use_glib) { | 94 if (use_glib) { |
95 configs += [ "//build/config/linux:glib" ] | 95 configs += [ "//build/config/linux:glib" ] |
96 } | 96 } |
97 } | 97 } |
| 98 |
| 99 if (use_aura) { |
| 100 sources += [ |
| 101 "platform/aura_window_properties.cc", |
| 102 "platform/aura_window_properties.h", |
| 103 ] |
| 104 } |
98 } | 105 } |
99 | 106 |
100 if (is_android) { | 107 if (is_android) { |
101 android_library("ui_accessibility_java") { | 108 android_library("ui_accessibility_java") { |
102 deps = [ | 109 deps = [ |
103 "//third_party/android_tools:android_support_annotations_java", | 110 "//third_party/android_tools:android_support_annotations_java", |
104 ] | 111 ] |
105 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 112 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
106 } | 113 } |
107 | 114 |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 | 174 |
168 fuzzer_test("ax_tree_fuzzer") { | 175 fuzzer_test("ax_tree_fuzzer") { |
169 sources = [ | 176 sources = [ |
170 "ax_tree_fuzzer.cc", | 177 "ax_tree_fuzzer.cc", |
171 ] | 178 ] |
172 | 179 |
173 deps = [ | 180 deps = [ |
174 ":accessibility", | 181 ":accessibility", |
175 ] | 182 ] |
176 } | 183 } |
OLD | NEW |