| 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 cflags = [ "/wd4245" ] | 527 cflags = [ "/wd4245" ] |
| 528 configs += [ "//build/config/win:windowed" ] | 528 configs += [ "//build/config/win:windowed" ] |
| 529 deps += [ "//webrtc/media:rtc_media_base" ] | 529 deps += [ "//webrtc/media:rtc_media_base" ] |
| 530 } | 530 } |
| 531 if (is_linux) { | 531 if (is_linux) { |
| 532 sources += [ | 532 sources += [ |
| 533 "peerconnection/client/linux/main.cc", | 533 "peerconnection/client/linux/main.cc", |
| 534 "peerconnection/client/linux/main_wnd.cc", | 534 "peerconnection/client/linux/main_wnd.cc", |
| 535 "peerconnection/client/linux/main_wnd.h", | 535 "peerconnection/client/linux/main_wnd.h", |
| 536 ] | 536 ] |
| 537 cflags = [ "-Wno-deprecated-declarations" ] |
| 537 libs = [ | 538 libs = [ |
| 538 "X11", | 539 "X11", |
| 539 "Xcomposite", | 540 "Xcomposite", |
| 540 "Xext", | 541 "Xext", |
| 541 "Xrender", | 542 "Xrender", |
| 542 ] | 543 ] |
| 543 deps += [ "//build/config/linux/gtk" ] | 544 deps += [ "//build/config/linux/gtk" ] |
| 544 } | 545 } |
| 545 configs += [ ":peerconnection_client_warnings_config" ] | 546 configs += [ ":peerconnection_client_warnings_config" ] |
| 546 | 547 |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 | 655 |
| 655 deps = [ | 656 deps = [ |
| 656 "../base:rtc_base", | 657 "../base:rtc_base", |
| 657 "../base:rtc_base_approved", | 658 "../base:rtc_base_approved", |
| 658 "../p2p:libstunprober", | 659 "../p2p:libstunprober", |
| 659 "../p2p:rtc_p2p", | 660 "../p2p:rtc_p2p", |
| 660 "../system_wrappers:field_trial_default", | 661 "../system_wrappers:field_trial_default", |
| 661 ] | 662 ] |
| 662 } | 663 } |
| 663 } | 664 } |
| OLD | NEW |