| 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 } |
| 100 } | 109 } |
| 101 | 110 |
| 102 if (is_android) { | 111 if (is_android) { |
| 103 android_library("ui_accessibility_java") { | 112 android_library("ui_accessibility_java") { |
| 104 deps = [ | 113 deps = [ |
| 105 "//third_party/android_tools:android_support_annotations_java", | 114 "//third_party/android_tools:android_support_annotations_java", |
| 106 ] | 115 ] |
| 107 srcjar_deps = [ ":ax_enumerations_srcjar" ] | 116 srcjar_deps = [ ":ax_enumerations_srcjar" ] |
| 108 } | 117 } |
| 109 | 118 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 178 |
| 170 fuzzer_test("ax_tree_fuzzer") { | 179 fuzzer_test("ax_tree_fuzzer") { |
| 171 sources = [ | 180 sources = [ |
| 172 "ax_tree_fuzzer.cc", | 181 "ax_tree_fuzzer.cc", |
| 173 ] | 182 ] |
| 174 | 183 |
| 175 deps = [ | 184 deps = [ |
| 176 ":accessibility", | 185 ":accessibility", |
| 177 ] | 186 ] |
| 178 } | 187 } |
| OLD | NEW |