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

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

Issue 2514883002: Create //webrtc/api:libjingle_peerconnection_api + refactorings. (Closed)
Patch Set: Added three headers for backwards-compatibility, specifically for building chromium. 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/webrtc.gni") 9 import("../build/webrtc.gni")
10 if (is_android) { 10 if (is_android) {
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 libs = [ 506 libs = [
507 "X11", 507 "X11",
508 "Xcomposite", 508 "Xcomposite",
509 "Xext", 509 "Xext",
510 "Xrender", 510 "Xrender",
511 ] 511 ]
512 public_configs = [ ":gtk2_config" ] 512 public_configs = [ ":gtk2_config" ]
513 } 513 }
514 deps = [ 514 deps = [
515 "//third_party/libyuv", 515 "//third_party/libyuv",
516 "//webrtc/api:libjingle_peerconnection", 516 "//webrtc/pc:libjingle_peerconnection",
517 "//webrtc/system_wrappers:field_trial_default", 517 "//webrtc/system_wrappers:field_trial_default",
518 "//webrtc/system_wrappers:metrics_default", 518 "//webrtc/system_wrappers:metrics_default",
519 ] 519 ]
520 configs += [ ":peerconnection_client_warnings_config" ] 520 configs += [ ":peerconnection_client_warnings_config" ]
521 if (rtc_build_json) { 521 if (rtc_build_json) {
522 deps += [ "//third_party/jsoncpp" ] 522 deps += [ "//third_party/jsoncpp" ]
523 } 523 }
524 } 524 }
525 525
526 rtc_executable("peerconnection_server") { 526 rtc_executable("peerconnection_server") {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
604 } 604 }
605 605
606 deps = [ 606 deps = [
607 "../p2p:libstunprober", 607 "../p2p:libstunprober",
608 "../p2p:rtc_p2p", 608 "../p2p:rtc_p2p",
609 "../system_wrappers:field_trial_default", 609 "../system_wrappers:field_trial_default",
610 ] 610 ]
611 } 611 }
612 } 612 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698