| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "platform/ax_platform_node_auralinux.cc", | 90 "platform/ax_platform_node_auralinux.cc", |
| 91 "platform/ax_platform_node_auralinux.h", | 91 "platform/ax_platform_node_auralinux.h", |
| 92 ] | 92 ] |
| 93 | 93 |
| 94 configs += [ "//build/config/linux/atk" ] | 94 configs += [ "//build/config/linux/atk" ] |
| 95 | 95 |
| 96 if (use_glib) { | 96 if (use_glib) { |
| 97 configs += [ "//build/config/linux:glib" ] | 97 configs += [ "//build/config/linux:glib" ] |
| 98 } | 98 } |
| 99 } | 99 } |
| 100 | |
| 101 if (use_aura) { | |
| 102 sources += [ | |
| 103 "platform/aura_window_properties.cc", | |
| 104 "platform/aura_window_properties.h", | |
| 105 ] | |
| 106 | |
| 107 public_deps += [ "//ui/aura" ] | |
| 108 } | |
| 109 } | 100 } |
| 110 | 101 |
| 111 if (is_android) { | 102 if (is_android) { |
| 112 android_library("ui_accessibility_java") { | 103 android_library("ui_accessibility_java") { |
| 113 deps = [ | 104 deps = [ |
| 114 "//third_party/android_tools:android_support_annotations_java", | 105 "//third_party/android_tools:android_support_annotations_java", |
| 115 ] | 106 ] |
| 116 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 107 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 117 } | 108 } |
| 118 | 109 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 | 169 |
| 179 fuzzer_test("ax_tree_fuzzer") { | 170 fuzzer_test("ax_tree_fuzzer") { |
| 180 sources = [ | 171 sources = [ |
| 181 "ax_tree_fuzzer.cc", | 172 "ax_tree_fuzzer.cc", |
| 182 ] | 173 ] |
| 183 | 174 |
| 184 deps = [ | 175 deps = [ |
| 185 ":accessibility", | 176 ":accessibility", |
| 186 ] | 177 ] |
| 187 } | 178 } |
| OLD | NEW |