| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 if (use_atk) { | 82 if (use_atk) { |
| 83 sources += [ | 83 sources += [ |
| 84 "platform/atk_util_auralinux.cc", | 84 "platform/atk_util_auralinux.cc", |
| 85 "platform/atk_util_auralinux.h", | 85 "platform/atk_util_auralinux.h", |
| 86 "platform/ax_platform_node_auralinux.cc", | 86 "platform/ax_platform_node_auralinux.cc", |
| 87 "platform/ax_platform_node_auralinux.h", | 87 "platform/ax_platform_node_auralinux.h", |
| 88 ] | 88 ] |
| 89 | 89 |
| 90 configs += [ "//build/config/linux/atk" ] | 90 configs += [ "//build/config/linux/atk" ] |
| 91 | 91 |
| 92 if (use_gconf) { | |
| 93 configs += [ "//build/config/linux/gconf" ] | |
| 94 } | |
| 95 | |
| 96 if (use_glib) { | 92 if (use_glib) { |
| 97 configs += [ "//build/config/linux:glib" ] | 93 configs += [ "//build/config/linux:glib" ] |
| 98 } | 94 } |
| 99 } | 95 } |
| 100 } | 96 } |
| 101 | 97 |
| 102 if (is_android) { | 98 if (is_android) { |
| 103 android_library("ui_accessibility_java") { | 99 android_library("ui_accessibility_java") { |
| 104 deps = [ | 100 deps = [ |
| 105 "//third_party/android_tools:android_support_annotations_java", | 101 "//third_party/android_tools:android_support_annotations_java", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 165 |
| 170 fuzzer_test("ax_tree_fuzzer") { | 166 fuzzer_test("ax_tree_fuzzer") { |
| 171 sources = [ | 167 sources = [ |
| 172 "ax_tree_fuzzer.cc", | 168 "ax_tree_fuzzer.cc", |
| 173 ] | 169 ] |
| 174 | 170 |
| 175 deps = [ | 171 deps = [ |
| 176 ":accessibility", | 172 ":accessibility", |
| 177 ] | 173 ] |
| 178 } | 174 } |
| OLD | NEW |