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

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

Issue 2405423002: [Video Capture Service] Move Mojo structs and enums to media/capture/mojo (Closed)
Patch Set: Fix dependency issues Created 4 years, 1 month 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ] 65 ]
66 66
67 configs += [ "//content:content_implementation" ] 67 configs += [ "//content:content_implementation" ]
68 68
69 deps = [ 69 deps = [
70 "//content/public/child:child_sources", 70 "//content/public/child:child_sources",
71 "//content/public/common:common_sources", 71 "//content/public/common:common_sources",
72 "//content/renderer", 72 "//content/renderer",
73 "//gin", 73 "//gin",
74 "//media", 74 "//media",
75 "//media/capture:capture",
xhwang 2016/10/27 04:57:09 ditto
chfremer 2016/10/27 17:15:44 Done.
75 "//media/gpu/ipc/client", 76 "//media/gpu/ipc/client",
76 "//net", 77 "//net",
77 "//ppapi/c", 78 "//ppapi/c",
78 "//skia", 79 "//skia",
79 "//third_party/WebKit/public:blink_headers", 80 "//third_party/WebKit/public:blink_headers",
80 "//third_party/libjingle", 81 "//third_party/libjingle",
81 "//third_party/widevine/cdm:headers", 82 "//third_party/widevine/cdm:headers",
82 "//ui/base", 83 "//ui/base",
83 "//ui/base/ime", 84 "//ui/base/ime",
84 "//ui/gfx", 85 "//ui/gfx",
(...skipping 24 matching lines...) Expand all
109 "//content/public/common:feature_h264_with_openh264_ffmpeg", 110 "//content/public/common:feature_h264_with_openh264_ffmpeg",
110 "//content/public/common:features", 111 "//content/public/common:features",
111 "//third_party/webrtc", 112 "//third_party/webrtc",
112 ] 113 ]
113 } 114 }
114 115
115 if (enable_plugins) { 116 if (enable_plugins) {
116 sources += [ "plugin_instance_throttler.h" ] 117 sources += [ "plugin_instance_throttler.h" ]
117 } 118 }
118 } 119 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698