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

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

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 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 (c) 2017 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2017 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("../webrtc.gni") 9 import("../webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 15 matching lines...) Expand all
26 "rtptransportadapter.cc", 26 "rtptransportadapter.cc",
27 "rtptransportadapter.h", 27 "rtptransportadapter.h",
28 "rtptransportcontrolleradapter.cc", 28 "rtptransportcontrolleradapter.cc",
29 "rtptransportcontrolleradapter.h", 29 "rtptransportcontrolleradapter.h",
30 ] 30 ]
31 31
32 # TODO(deadbeef): Create a separate target for the common things ORTC and 32 # TODO(deadbeef): Create a separate target for the common things ORTC and
33 # PeerConnection code shares, so that ortc can depend on that instead of 33 # PeerConnection code shares, so that ortc can depend on that instead of
34 # libjingle_peerconnection. 34 # libjingle_peerconnection.
35 deps = [ 35 deps = [
36 "../api:optional",
36 "../api/audio_codecs:builtin_audio_decoder_factory", 37 "../api/audio_codecs:builtin_audio_decoder_factory",
37 "../api/audio_codecs:builtin_audio_encoder_factory", 38 "../api/audio_codecs:builtin_audio_encoder_factory",
38 "../call:call_interfaces", 39 "../call:call_interfaces",
39 "../call:rtp_sender", 40 "../call:rtp_sender",
40 "../logging:rtc_event_log_api", 41 "../logging:rtc_event_log_api",
41 "../media:rtc_media", 42 "../media:rtc_media",
42 "../media:rtc_media_base", 43 "../media:rtc_media_base",
43 "../modules/audio_processing:audio_processing", 44 "../modules/audio_processing:audio_processing",
44 "../p2p:rtc_p2p", 45 "../p2p:rtc_p2p",
45 "../pc:libjingle_peerconnection", 46 "../pc:libjingle_peerconnection",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 if (!build_with_chromium && is_clang) { 92 if (!build_with_chromium && is_clang) {
92 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 93 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
93 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 94 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
94 } 95 }
95 96
96 if (is_android) { 97 if (is_android) {
97 deps += [ "//testing/android/native_test:native_test_support" ] 98 deps += [ "//testing/android/native_test:native_test_support" ]
98 } 99 }
99 } 100 }
100 } 101 }
OLDNEW
« no previous file with comments | « webrtc/modules/video_coding/utility/quality_scaler.h ('k') | webrtc/ortc/rtpparametersconversion.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698