| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/json_schema_api.gni") | 7 import("//build/json_schema_api.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "platform/ax_platform_node_mac.mm", | 67 "platform/ax_platform_node_mac.mm", |
| 68 "platform/ax_platform_node_win.cc", | 68 "platform/ax_platform_node_win.cc", |
| 69 "platform/ax_platform_node_win.h", | 69 "platform/ax_platform_node_win.h", |
| 70 ] | 70 ] |
| 71 | 71 |
| 72 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] | 72 defines = [ "ACCESSIBILITY_IMPLEMENTATION" ] |
| 73 | 73 |
| 74 public_deps = [ | 74 public_deps = [ |
| 75 ":ax_gen", | 75 ":ax_gen", |
| 76 "//base", | 76 "//base", |
| 77 "//skia", |
| 77 "//ui/base", | 78 "//ui/base", |
| 78 "//ui/gfx", | 79 "//ui/gfx", |
| 79 "//ui/gfx/geometry", | 80 "//ui/gfx/geometry", |
| 80 ] | 81 ] |
| 81 | 82 |
| 82 if (is_win) { | 83 if (is_win) { |
| 83 public_deps += [ "//third_party/iaccessible2" ] | 84 public_deps += [ "//third_party/iaccessible2" ] |
| 84 } | 85 } |
| 85 | 86 |
| 86 if (use_atk) { | 87 if (use_atk) { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "ax_tree_serializer_unittest.cc", | 134 "ax_tree_serializer_unittest.cc", |
| 134 "ax_tree_unittest.cc", | 135 "ax_tree_unittest.cc", |
| 135 "platform/ax_platform_node_win_unittest.cc", | 136 "platform/ax_platform_node_win_unittest.cc", |
| 136 ] | 137 ] |
| 137 | 138 |
| 138 deps = [ | 139 deps = [ |
| 139 ":accessibility", | 140 ":accessibility", |
| 140 ":test_support", | 141 ":test_support", |
| 141 "//base", | 142 "//base", |
| 142 "//base/test:run_all_unittests", | 143 "//base/test:run_all_unittests", |
| 144 "//skia", |
| 143 "//testing/gtest", | 145 "//testing/gtest", |
| 144 "//ui/base", | 146 "//ui/base", |
| 145 "//ui/gfx", | 147 "//ui/gfx", |
| 146 "//ui/gfx/geometry", | 148 "//ui/gfx/geometry", |
| 147 ] | 149 ] |
| 148 | 150 |
| 149 if (is_win) { | 151 if (is_win) { |
| 150 deps += [ "//third_party/iaccessible2" ] | 152 deps += [ "//third_party/iaccessible2" ] |
| 151 } | 153 } |
| 152 } | 154 } |
| 153 | 155 |
| 154 json_schema_api("ax_gen") { | 156 json_schema_api("ax_gen") { |
| 155 sources = [ | 157 sources = [ |
| 156 "ax_enums.idl", | 158 "ax_enums.idl", |
| 157 ] | 159 ] |
| 158 deps = [ | 160 deps = [ |
| 159 "//base/third_party/dynamic_annotations", | 161 "//base/third_party/dynamic_annotations", |
| 160 ] | 162 ] |
| 161 root_namespace = "ui" | 163 root_namespace = "ui" |
| 162 schemas = true | 164 schemas = true |
| 163 } | 165 } |
| OLD | NEW |