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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 | 53 |
54 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 54 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
55 | 55 |
56 public_deps = [ | 56 public_deps = [ |
57 ":ax_gen", | 57 ":ax_gen", |
58 "//base", | 58 "//base", |
59 "//base:i18n", | 59 "//base:i18n", |
60 "//ui/base", | 60 "//ui/base", |
61 "//ui/gfx", | 61 "//ui/gfx", |
62 "//ui/gfx/geometry", | 62 "//ui/gfx/geometry", |
| 63 "//ui/strings", |
63 ] | 64 ] |
64 | 65 |
65 if (is_win) { | 66 if (is_win) { |
66 public_deps += [ "//third_party/iaccessible2" ] | 67 public_deps += [ "//third_party/iaccessible2" ] |
67 } | 68 } |
68 | 69 |
69 if (is_mac) { | 70 if (is_mac) { |
70 libs = [ | 71 libs = [ |
71 "AppKit.framework", | 72 "AppKit.framework", |
72 "Foundation.framework", | 73 "Foundation.framework", |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 | 163 |
163 fuzzer_test("ax_tree_fuzzer") { | 164 fuzzer_test("ax_tree_fuzzer") { |
164 sources = [ | 165 sources = [ |
165 "ax_tree_fuzzer.cc", | 166 "ax_tree_fuzzer.cc", |
166 ] | 167 ] |
167 | 168 |
168 deps = [ | 169 deps = [ |
169 ":accessibility", | 170 ":accessibility", |
170 ] | 171 ] |
171 } | 172 } |
OLD | NEW |