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

Side by Side Diff: components/exo/BUILD.gn

Issue 2640123004: Initial support for native accessibility in ARC (Closed)
Patch Set: Experimental changes Created 3 years, 10 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("exo") { 8 source_set("exo") {
9 sources = [ 9 sources = [
10 "buffer.cc", 10 "buffer.cc",
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "//ash", 53 "//ash",
54 "//ash/public/cpp", 54 "//ash/public/cpp",
55 "//base", 55 "//base",
56 "//cc", 56 "//cc",
57 "//cc/ipc:interfaces", 57 "//cc/ipc:interfaces",
58 "//cc/surfaces", 58 "//cc/surfaces",
59 "//device/gamepad", 59 "//device/gamepad",
60 "//gpu", 60 "//gpu",
61 "//gpu/command_buffer/client:gles2_interface", 61 "//gpu/command_buffer/client:gles2_interface",
62 "//skia", 62 "//skia",
63 "//ui/accessibility",
63 "//ui/aura", 64 "//ui/aura",
64 "//ui/compositor", 65 "//ui/compositor",
65 "//ui/display/manager", 66 "//ui/display/manager",
66 "//ui/events/devices:devices", 67 "//ui/events/devices:devices",
67 "//ui/gfx", 68 "//ui/gfx",
68 "//ui/gfx/geometry", 69 "//ui/gfx/geometry",
69 "//ui/gl", 70 "//ui/gl",
70 "//ui/views", 71 "//ui/views",
71 "//ui/views/mus", 72 "//ui/views/mus",
72 "//ui/wm", 73 "//ui/wm",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "//base", 133 "//base",
133 "//base/test:test_support", 134 "//base/test:test_support",
134 "//cc", 135 "//cc",
135 "//cc/surfaces:surfaces", 136 "//cc/surfaces:surfaces",
136 "//components/user_manager", 137 "//components/user_manager",
137 "//device/gamepad:test_helpers", 138 "//device/gamepad:test_helpers",
138 "//gpu/command_buffer/client:gles2_interface", 139 "//gpu/command_buffer/client:gles2_interface",
139 "//skia", 140 "//skia",
140 "//testing/gmock", 141 "//testing/gmock",
141 "//testing/gtest", 142 "//testing/gtest",
143 "//ui/accessibility:accessibility",
142 "//ui/aura", 144 "//ui/aura",
143 "//ui/events:dom_keycode_converter", 145 "//ui/events:dom_keycode_converter",
144 "//ui/events:test_support", 146 "//ui/events:test_support",
145 "//ui/gfx", 147 "//ui/gfx",
146 "//ui/keyboard", 148 "//ui/keyboard",
147 "//ui/message_center", 149 "//ui/message_center",
148 "//ui/views", 150 "//ui/views",
149 "//ui/wm", 151 "//ui/wm",
150 ] 152 ]
151 153
(...skipping 20 matching lines...) Expand all
172 data_deps = [ 174 data_deps = [
173 "//ash/common/strings:ash_test_strings", 175 "//ash/common/strings:ash_test_strings",
174 "//ash/resources:ash_test_resources_100_percent", 176 "//ash/resources:ash_test_resources_100_percent",
175 "//ash/resources:ash_test_resources_200_percent", 177 "//ash/resources:ash_test_resources_200_percent",
176 ] 178 ]
177 179
178 if (is_linux) { 180 if (is_linux) {
179 deps += [ "//components/exo/wayland:unit_tests" ] 181 deps += [ "//components/exo/wayland:unit_tests" ]
180 } 182 }
181 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698