OLD | NEW |
---|---|
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 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
9 | 9 |
10 source_set("renderer") { | 10 source_set("renderer") { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 "//media/blink", | 58 "//media/blink", |
59 "//media/midi", | 59 "//media/midi", |
60 "//mojo/common", | 60 "//mojo/common", |
61 "//mojo/converters/geometry", | 61 "//mojo/converters/geometry", |
62 "//mojo/environment:chromium", | 62 "//mojo/environment:chromium", |
63 "//mojo/public/cpp/bindings", | 63 "//mojo/public/cpp/bindings", |
64 "//mojo/public/js", | 64 "//mojo/public/js", |
65 "//mojo/shell/public/cpp", | 65 "//mojo/shell/public/cpp", |
66 "//mojo/shell/public/interfaces", | 66 "//mojo/shell/public/interfaces", |
67 "//net", | 67 "//net", |
68 "//sandbox", | |
jbroman
2016/01/14 14:31:24
used by renderer_main_platform_delegate_{win,andro
| |
68 "//skia", | 69 "//skia", |
69 "//skia/public", | 70 "//skia/public", |
70 "//storage/common", | 71 "//storage/common", |
71 "//third_party/WebKit/public:blink", | 72 "//third_party/WebKit/public:blink", |
72 "//third_party/icu", | 73 "//third_party/icu", |
73 "//third_party/libjingle", | 74 "//third_party/libjingle", |
74 "//third_party/libyuv", | 75 "//third_party/libyuv", |
75 "//third_party/mojo/src/mojo/edk/js", | 76 "//third_party/mojo/src/mojo/edk/js", |
76 "//third_party/npapi", | 77 "//third_party/npapi", |
77 "//third_party/widevine/cdm:version_h", | 78 "//third_party/widevine/cdm:version_h", |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
152 sources += rebase_path( | 153 sources += rebase_path( |
153 content_renderer_gypi_values.private_renderer_webrtc_sources, | 154 content_renderer_gypi_values.private_renderer_webrtc_sources, |
154 ".", | 155 ".", |
155 "//content") | 156 "//content") |
156 | 157 |
157 deps += [ | 158 deps += [ |
158 "//crypto", | 159 "//crypto", |
159 "//third_party/libjingle:libjingle_webrtc", | 160 "//third_party/libjingle:libjingle_webrtc", |
160 "//third_party/libjingle:libpeerconnection", | 161 "//third_party/libjingle:libpeerconnection", |
161 "//third_party/libjingle:libstunprober", | 162 "//third_party/libjingle:libstunprober", |
163 "//third_party/libvpx_new", | |
jbroman
2016/01/14 14:31:23
Used by content/renderer/media/video_track_recorde
| |
162 "//third_party/webrtc/base:rtc_base", | 164 "//third_party/webrtc/base:rtc_base", |
163 "//third_party/webrtc/common_video", | 165 "//third_party/webrtc/common_video", |
164 "//third_party/webrtc/modules/audio_device", | 166 "//third_party/webrtc/modules/audio_device", |
165 "//third_party/webrtc/modules/audio_processing", | 167 "//third_party/webrtc/modules/audio_processing", |
166 "//third_party/webrtc/system_wrappers", | 168 "//third_party/webrtc/system_wrappers", |
167 ] | 169 ] |
168 } else { | 170 } else { |
169 sources += [ | 171 sources += [ |
170 "media/webrtc_logging.h", | 172 "media/webrtc_logging.h", |
171 "media/webrtc_logging_noop.cc", | 173 "media/webrtc_logging_noop.cc", |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
228 "vr/vr_dispatcher.cc", | 230 "vr/vr_dispatcher.cc", |
229 "vr/vr_dispatcher.h", | 231 "vr/vr_dispatcher.h", |
230 "vr/vr_type_converters.cc", | 232 "vr/vr_type_converters.cc", |
231 "vr/vr_type_converters.h", | 233 "vr/vr_type_converters.h", |
232 ] | 234 ] |
233 } | 235 } |
234 | 236 |
235 if (use_seccomp_bpf) { | 237 if (use_seccomp_bpf) { |
236 defines += [ "USE_SECCOMP_BPF" ] | 238 defines += [ "USE_SECCOMP_BPF" ] |
237 } | 239 } |
240 | |
241 if (use_ozone) { | |
242 deps += [ "//ui/ozone" ] | |
jbroman
2016/01/14 14:31:24
Used by renderer_main.cc.
| |
243 } | |
238 } | 244 } |
OLD | NEW |