Chromium Code Reviews| 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 "//base_i18n", | |
|
Mark Mentovai
2016/03/09 18:42:35
I don’t actually know if this is correct. I don’t
| |
| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 154 json_schema_api("ax_gen") { | 155 json_schema_api("ax_gen") { |
| 155 sources = [ | 156 sources = [ |
| 156 "ax_enums.idl", | 157 "ax_enums.idl", |
| 157 ] | 158 ] |
| 158 deps = [ | 159 deps = [ |
| 159 "//base/third_party/dynamic_annotations", | 160 "//base/third_party/dynamic_annotations", |
| 160 ] | 161 ] |
| 161 root_namespace = "ui" | 162 root_namespace = "ui" |
| 162 schemas = true | 163 schemas = true |
| 163 } | 164 } |
| OLD | NEW |