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

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

Issue 2479153002: Rename media constraints model and store. (Closed)
Patch Set: 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 (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/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 } 234 }
235 235
236 if (is_ios) { 236 if (is_ios) {
237 ios_app_bundle("AppRTCMobile") { 237 ios_app_bundle("AppRTCMobile") {
238 sources = [ 238 sources = [
239 "objc/AppRTCMobile/ios/ARDAppDelegate.m", 239 "objc/AppRTCMobile/ios/ARDAppDelegate.m",
240 "objc/AppRTCMobile/ios/ARDMainView.h", 240 "objc/AppRTCMobile/ios/ARDMainView.h",
241 "objc/AppRTCMobile/ios/ARDMainView.m", 241 "objc/AppRTCMobile/ios/ARDMainView.m",
242 "objc/AppRTCMobile/ios/ARDMainViewController.h", 242 "objc/AppRTCMobile/ios/ARDMainViewController.h",
243 "objc/AppRTCMobile/ios/ARDMainViewController.m", 243 "objc/AppRTCMobile/ios/ARDMainViewController.m",
244 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.h", 244 "objc/AppRTCMobile/ios/ARDSettingsModel+Private.h",
kthelgason 2016/11/07 13:31:24 why was this not needed before? Is this perhaps un
daniela-webrtc 2016/11/07 14:45:39 It was used. It worked even without being added in
245 "objc/AppRTCMobile/ios/ARDMediaConstraintsModel.m", 245 "objc/AppRTCMobile/ios/ARDSettingsModel.h",
246 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.h", 246 "objc/AppRTCMobile/ios/ARDSettingsModel.m",
247 "objc/AppRTCMobile/ios/ARDMediaConstraintsSettingsStore.m", 247 "objc/AppRTCMobile/ios/ARDSettingsStore.h",
248 "objc/AppRTCMobile/ios/ARDSettingsStore.m",
248 "objc/AppRTCMobile/ios/ARDSettingsViewController.h", 249 "objc/AppRTCMobile/ios/ARDSettingsViewController.h",
249 "objc/AppRTCMobile/ios/ARDSettingsViewController.m", 250 "objc/AppRTCMobile/ios/ARDSettingsViewController.m",
250 "objc/AppRTCMobile/ios/ARDStatsView.h", 251 "objc/AppRTCMobile/ios/ARDStatsView.h",
251 "objc/AppRTCMobile/ios/ARDStatsView.m", 252 "objc/AppRTCMobile/ios/ARDStatsView.m",
252 "objc/AppRTCMobile/ios/ARDVideoCallView.h", 253 "objc/AppRTCMobile/ios/ARDVideoCallView.h",
253 "objc/AppRTCMobile/ios/ARDVideoCallView.m", 254 "objc/AppRTCMobile/ios/ARDVideoCallView.m",
254 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", 255 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h",
255 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", 256 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m",
256 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch", 257 "objc/AppRTCMobile/ios/AppRTCMobile-Prefix.pch",
257 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", 258 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h",
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 564 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
564 } 565 }
565 566
566 deps = [ 567 deps = [
567 "../p2p:libstunprober", 568 "../p2p:libstunprober",
568 "../p2p:rtc_p2p", 569 "../p2p:rtc_p2p",
569 "../system_wrappers:field_trial_default", 570 "../system_wrappers:field_trial_default",
570 ] 571 ]
571 } 572 }
572 } 573 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698