OLD | NEW |
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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
505 libs = [ | 505 libs = [ |
506 "X11", | 506 "X11", |
507 "Xcomposite", | 507 "Xcomposite", |
508 "Xext", | 508 "Xext", |
509 "Xrender", | 509 "Xrender", |
510 ] | 510 ] |
511 public_configs = [ ":gtk2_config" ] | 511 public_configs = [ ":gtk2_config" ] |
512 } | 512 } |
513 deps = [ | 513 deps = [ |
514 "//third_party/libyuv", | 514 "//third_party/libyuv", |
515 "//webrtc/api:libjingle_peerconnection", | 515 "//webrtc/pc:libjingle_peerconnection", |
516 "//webrtc/system_wrappers:field_trial_default", | 516 "//webrtc/system_wrappers:field_trial_default", |
517 "//webrtc/system_wrappers:metrics_default", | 517 "//webrtc/system_wrappers:metrics_default", |
518 ] | 518 ] |
519 configs += [ ":peerconnection_client_warnings_config" ] | 519 configs += [ ":peerconnection_client_warnings_config" ] |
520 if (rtc_build_json) { | 520 if (rtc_build_json) { |
521 deps += [ "//third_party/jsoncpp" ] | 521 deps += [ "//third_party/jsoncpp" ] |
522 } | 522 } |
523 } | 523 } |
524 | 524 |
525 rtc_executable("peerconnection_server") { | 525 rtc_executable("peerconnection_server") { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
602 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 602 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
603 } | 603 } |
604 | 604 |
605 deps = [ | 605 deps = [ |
606 "../p2p:libstunprober", | 606 "../p2p:libstunprober", |
607 "../p2p:rtc_p2p", | 607 "../p2p:rtc_p2p", |
608 "../system_wrappers:field_trial_default", | 608 "../system_wrappers:field_trial_default", |
609 ] | 609 ] |
610 } | 610 } |
611 } | 611 } |
OLD | NEW |