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