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

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2410333005: Create AXAction and AXActionData as a way to simplify accessibility actions (Closed)
Patch Set: Fix Android compile Created 4 years, 2 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 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/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("browser") { 8 group("browser") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ] 280 ]
281 281
282 public_deps = [ 282 public_deps = [
283 "//mojo/public/cpp/bindings", 283 "//mojo/public/cpp/bindings",
284 "//mojo/public/cpp/system", 284 "//mojo/public/cpp/system",
285 "//services/shell/public/cpp", 285 "//services/shell/public/cpp",
286 286
287 # We expose skia headers in the public API. 287 # We expose skia headers in the public API.
288 "//skia", 288 "//skia",
289 "//third_party/WebKit/public:mojo_bindings", 289 "//third_party/WebKit/public:mojo_bindings",
290 "//ui/accessibility:ax_gen",
290 ] 291 ]
291 deps = [ 292 deps = [
292 "//cc", 293 "//cc",
293 "//content/browser", # Must not be public_deps! 294 "//content/browser", # Must not be public_deps!
294 "//content/public/common:common_sources", 295 "//content/public/common:common_sources",
295 "//device/geolocation", 296 "//device/geolocation",
296 "//device/power_save_blocker", 297 "//device/power_save_blocker",
297 "//gpu", 298 "//gpu",
298 "//media", 299 "//media",
299 "//net", 300 "//net",
(...skipping 14 matching lines...) Expand all
314 315
315 if (is_android) { 316 if (is_android) {
316 deps += [ "//ui/android" ] 317 deps += [ "//ui/android" ]
317 } 318 }
318 319
319 if (use_aura) { 320 if (use_aura) {
320 sources -= [ "context_factory.h" ] 321 sources -= [ "context_factory.h" ]
321 deps += [ "//ui/aura" ] 322 deps += [ "//ui/aura" ]
322 } 323 }
323 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698