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

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

Issue 2310563002: Adds routed interface support between RenderFrameHost and RenderFrame (Closed)
Patch Set: . Created 4 years, 3 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chromecast_build.gni") 6 import("//build/config/chromecast_build.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//third_party/webrtc/build/webrtc.gni") 9 import("//third_party/webrtc/build/webrtc.gni")
10 10
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 84
85 public_configs = [ ":static_switches_defines" ] 85 public_configs = [ ":static_switches_defines" ]
86 } 86 }
87 87
88 source_set("common_sources") { 88 source_set("common_sources") {
89 # External code should depend on via ":common" above. 89 # External code should depend on via ":common" above.
90 visibility = [ "//content/*" ] 90 visibility = [ "//content/*" ]
91 91
92 sources = [ 92 sources = [
93 "appcache_info.h", 93 "appcache_info.h",
94 "associated_interface_provider.h",
95 "associated_interface_registry.h",
94 "bindings_policy.h", 96 "bindings_policy.h",
95 "browser_plugin_guest_mode.cc", 97 "browser_plugin_guest_mode.cc",
96 "browser_plugin_guest_mode.h", 98 "browser_plugin_guest_mode.h",
97 "browser_side_navigation_policy.cc", 99 "browser_side_navigation_policy.cc",
98 "browser_side_navigation_policy.h", 100 "browser_side_navigation_policy.h",
99 "cdm_info.h", 101 "cdm_info.h",
100 "child_process_host.h", 102 "child_process_host.h",
101 "child_process_host_delegate.cc", 103 "child_process_host_delegate.cc",
102 "child_process_host_delegate.h", 104 "child_process_host_delegate.h",
103 "child_process_sandbox_support_linux.h", 105 "child_process_sandbox_support_linux.h",
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 ] 226 ]
225 227
226 configs += [ 228 configs += [
227 "//build/config:precompiled_headers", 229 "//build/config:precompiled_headers",
228 "//content:content_implementation", 230 "//content:content_implementation",
229 ] 231 ]
230 232
231 public_configs = [ "//v8:external_startup_data" ] 233 public_configs = [ "//v8:external_startup_data" ]
232 234
233 public_deps = [ 235 public_deps = [
236 ":interfaces",
234 "//content/common", 237 "//content/common",
235 "//mojo/public/cpp/bindings", 238 "//mojo/public/cpp/bindings",
236 "//services/shell/public/cpp", 239 "//services/shell/public/cpp",
237 "//services/shell/public/interfaces", 240 "//services/shell/public/interfaces",
238 "//third_party/WebKit/public:blink_headers", 241 "//third_party/WebKit/public:blink_headers",
239 "//ui/accessibility", 242 "//ui/accessibility",
240 "//url/ipc:url_ipc", 243 "//url/ipc:url_ipc",
241 ] 244 ]
242 deps = [ 245 deps = [
243 # This looks needless as we have //content/common in public_deps, but it's 246 # This looks needless as we have //content/common in public_deps, but it's
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 source_set("feature_h264_with_openh264_ffmpeg") { 295 source_set("feature_h264_with_openh264_ffmpeg") {
293 deps = [ 296 deps = [
294 ":features", 297 ":features",
295 "//base", 298 "//base",
296 ] 299 ]
297 sources = [ 300 sources = [
298 "feature_h264_with_openh264_ffmpeg.cc", 301 "feature_h264_with_openh264_ffmpeg.cc",
299 "feature_h264_with_openh264_ffmpeg.h", 302 "feature_h264_with_openh264_ffmpeg.h",
300 ] 303 ]
301 } 304 }
305
306 mojom("interfaces") {
307 sources = [
308 "associated_interfaces.mojom",
309 ]
310 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698