Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(593)

Side by Side Diff: ui/accessibility/BUILD.gn

Issue 1780473002: Workaround for navigating by word in the omnibox on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed deps file. Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/accessibility/DEPS » ('j') | ui/accessibility/DEPS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/accessibility/DEPS » ('j') | ui/accessibility/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698