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

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2426563003: Moved transport.h from webrtc/ to webrtc/api, created build target and updated dependencies. (Closed)
Patch Set: Remove mentions of GYP. Created 4 years 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 (c) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 if (is_linux && rtc_use_gtk) { 161 if (is_linux && rtc_use_gtk) {
162 sources += [ 162 sources += [
163 "devices/gtkvideorenderer.cc", 163 "devices/gtkvideorenderer.cc",
164 "devices/gtkvideorenderer.h", 164 "devices/gtkvideorenderer.h",
165 ] 165 ]
166 public_configs += [ ":gtk-lib" ] 166 public_configs += [ ":gtk-lib" ]
167 } 167 }
168 deps += [ 168 deps += [
169 "..:webrtc_common", 169 "..:webrtc_common",
170 "../api:call_api", 170 "../api:call_api",
171 "../api:transport_api",
171 "../base:rtc_base_approved", 172 "../base:rtc_base_approved",
172 "../call", 173 "../call",
173 "../modules/audio_mixer:audio_mixer_impl", 174 "../modules/audio_mixer:audio_mixer_impl",
174 "../modules/video_coding", 175 "../modules/video_coding",
175 "../p2p", 176 "../p2p",
176 "../system_wrappers", 177 "../system_wrappers",
177 "../video", 178 "../video",
178 "../voice_engine", 179 "../voice_engine",
179 ] 180 ]
180 } 181 }
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 340 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
340 ":rtc_media", 341 ":rtc_media",
341 ":rtc_unittest_main", 342 ":rtc_unittest_main",
342 "../audio", 343 "../audio",
343 "../base:rtc_base_tests_utils", 344 "../base:rtc_base_tests_utils",
344 "../modules/audio_device:mock_audio_device", 345 "../modules/audio_device:mock_audio_device",
345 "../system_wrappers:metrics_default", 346 "../system_wrappers:metrics_default",
346 ] 347 ]
347 } 348 }
348 } 349 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698