| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "ax_tree_source.h", | 49 "ax_tree_source.h", |
| 50 "ax_tree_update.h", | 50 "ax_tree_update.h", |
| 51 "platform/ax_android_constants.cc", | 51 "platform/ax_android_constants.cc", |
| 52 "platform/ax_android_constants.h", | 52 "platform/ax_android_constants.h", |
| 53 "platform/ax_platform_unique_id.cc", | 53 "platform/ax_platform_unique_id.cc", |
| 54 "platform/ax_platform_unique_id.h", | 54 "platform/ax_platform_unique_id.h", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 if (has_native_accessibility) { | 57 if (has_native_accessibility) { |
| 58 sources += [ | 58 sources += [ |
| 59 "platform/ax_fake_caret_win.cc", |
| 60 "platform/ax_fake_caret_win.h", |
| 59 "platform/ax_platform_node.cc", | 61 "platform/ax_platform_node.cc", |
| 60 "platform/ax_platform_node.h", | 62 "platform/ax_platform_node.h", |
| 61 "platform/ax_platform_node_base.cc", | 63 "platform/ax_platform_node_base.cc", |
| 62 "platform/ax_platform_node_base.h", | 64 "platform/ax_platform_node_base.h", |
| 63 "platform/ax_platform_node_delegate.h", | 65 "platform/ax_platform_node_delegate.h", |
| 64 "platform/ax_platform_node_mac.h", | 66 "platform/ax_platform_node_mac.h", |
| 65 "platform/ax_platform_node_mac.mm", | 67 "platform/ax_platform_node_mac.mm", |
| 66 "platform/ax_platform_node_win.cc", | 68 "platform/ax_platform_node_win.cc", |
| 67 "platform/ax_platform_node_win.h", | 69 "platform/ax_platform_node_win.h", |
| 68 ] | 70 ] |
| 69 } | 71 } |
| 70 | 72 |
| 71 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 73 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
| 72 | 74 |
| 73 public_deps = [ | 75 public_deps = [ |
| 74 ":ax_gen", | 76 ":ax_gen", |
| 75 "//base", | 77 "//base", |
| 76 "//base:i18n", | 78 "//base:i18n", |
| 77 "//ui/base", | 79 "//ui/base", |
| 78 "//ui/gfx", | 80 "//ui/gfx", |
| 79 "//ui/gfx/geometry", | 81 "//ui/gfx/geometry", |
| 80 "//ui/strings", | 82 "//ui/strings", |
| 81 ] | 83 ] |
| 82 | 84 |
| 83 if (is_win) { | 85 if (is_win) { |
| 84 public_deps += [ "//third_party/iaccessible2" ] | 86 public_deps += [ "//third_party/iaccessible2" ] |
| 87 libs = [ "oleacc.lib" ] |
| 85 } | 88 } |
| 86 | 89 |
| 87 if (is_mac) { | 90 if (is_mac) { |
| 88 libs = [ | 91 libs = [ |
| 89 "AppKit.framework", | 92 "AppKit.framework", |
| 90 "Foundation.framework", | 93 "Foundation.framework", |
| 91 ] | 94 ] |
| 92 } | 95 } |
| 93 | 96 |
| 94 if (use_atk) { | 97 if (use_atk) { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 194 |
| 192 fuzzer_test("ax_tree_fuzzer") { | 195 fuzzer_test("ax_tree_fuzzer") { |
| 193 sources = [ | 196 sources = [ |
| 194 "ax_tree_fuzzer.cc", | 197 "ax_tree_fuzzer.cc", |
| 195 ] | 198 ] |
| 196 | 199 |
| 197 deps = [ | 200 deps = [ |
| 198 ":accessibility", | 201 ":accessibility", |
| 199 ] | 202 ] |
| 200 } | 203 } |
| OLD | NEW |