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

Side by Side Diff: content/public/renderer/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/config/features.gni") 5 import("//build/config/features.gni")
6 6
7 # See //content/BUILD.gn for how this works. 7 # See //content/BUILD.gn for how this works.
8 group("renderer") { 8 group("renderer") {
9 if (is_component_build) { 9 if (is_component_build) {
10 public_deps = [ 10 public_deps = [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 "render_view_observer_tracker.h", 57 "render_view_observer_tracker.h",
58 "render_view_visitor.h", 58 "render_view_visitor.h",
59 "renderer_ppapi_host.h", 59 "renderer_ppapi_host.h",
60 "resource_fetcher.h", 60 "resource_fetcher.h",
61 "video_encode_accelerator.cc", 61 "video_encode_accelerator.cc",
62 "video_encode_accelerator.h", 62 "video_encode_accelerator.h",
63 ] 63 ]
64 64
65 configs += [ "//content:content_implementation" ] 65 configs += [ "//content:content_implementation" ]
66 66
67 public_deps = [
68 "//content/public/common:interfaces",
69 ]
70
67 deps = [ 71 deps = [
68 "//content/public/child:child_sources", 72 "//content/public/child:child_sources",
69 "//content/public/common:common_sources", 73 "//content/public/common:common_sources",
70 "//content/renderer", 74 "//content/renderer",
71 "//gin", 75 "//gin",
72 "//media", 76 "//media",
73 "//media/gpu/ipc/client", 77 "//media/gpu/ipc/client",
74 "//net", 78 "//net",
75 "//ppapi/c", 79 "//ppapi/c",
76 "//skia", 80 "//skia",
(...skipping 30 matching lines...) Expand all
107 "//content/public/common:feature_h264_with_openh264_ffmpeg", 111 "//content/public/common:feature_h264_with_openh264_ffmpeg",
108 "//content/public/common:features", 112 "//content/public/common:features",
109 "//third_party/webrtc", 113 "//third_party/webrtc",
110 ] 114 ]
111 } 115 }
112 116
113 if (enable_plugins) { 117 if (enable_plugins) {
114 sources += [ "plugin_instance_throttler.h" ] 118 sources += [ "plugin_instance_throttler.h" ]
115 } 119 }
116 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698