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

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

Issue 1713723002: Implement accessibility support for CSS-transformed iframes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed another skia dependency 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
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 # See //content/BUILD.gn for how this works. 10 # See //content/BUILD.gn for how this works.
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 configs += [ 79 configs += [
80 "//build/config:precompiled_headers", 80 "//build/config:precompiled_headers",
81 "//content:content_implementation", 81 "//content:content_implementation",
82 ] 82 ]
83 83
84 public_configs = [ "//v8:external_startup_data" ] 84 public_configs = [ "//v8:external_startup_data" ]
85 85
86 public_deps = [ 86 public_deps = [
87 "//content/common", 87 "//content/common",
88 "//mojo/public/cpp/bindings", 88 "//mojo/public/cpp/bindings",
89 "//ui/accessibility",
89 ] 90 ]
90 deps = [ 91 deps = [
91 "//net", 92 "//net",
92 "//skia",
93 "//third_party/WebKit/public:blink_headers", 93 "//third_party/WebKit/public:blink_headers",
94 "//third_party/icu", 94 "//third_party/icu",
95 "//ui/base", 95 "//ui/base",
96 "//ui/gfx", 96 "//ui/gfx",
97 ] 97 ]
98 98
99 if (!enable_plugins) { 99 if (!enable_plugins) {
100 sources -= [ 100 sources -= [
101 "pepper_plugin_info.cc", 101 "pepper_plugin_info.cc",
102 "pepper_plugin_info.h", 102 "pepper_plugin_info.h",
103 ] 103 ]
104 } 104 }
105 105
106 if (enable_webrtc) { 106 if (enable_webrtc) {
107 sources += [ 107 sources += [
108 "webrtc_ip_handling_policy.cc", 108 "webrtc_ip_handling_policy.cc",
109 "webrtc_ip_handling_policy.h", 109 "webrtc_ip_handling_policy.h",
110 ] 110 ]
111 } 111 }
112 } 112 }
113 113
114 mojom("mojo_bindings") { 114 mojom("mojo_bindings") {
115 sources = [ 115 sources = [
116 "background_sync.mojom", 116 "background_sync.mojom",
117 "mojo_geoposition.mojom", 117 "mojo_geoposition.mojom",
118 "permission_status.mojom", 118 "permission_status.mojom",
119 "service_worker_event_status.mojom", 119 "service_worker_event_status.mojom",
120 ] 120 ]
121 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698