| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 "peerconnection/client/flagdefs.h", | 478 "peerconnection/client/flagdefs.h", |
| 479 "peerconnection/client/main.cc", | 479 "peerconnection/client/main.cc", |
| 480 "peerconnection/client/main_wnd.cc", | 480 "peerconnection/client/main_wnd.cc", |
| 481 "peerconnection/client/main_wnd.h", | 481 "peerconnection/client/main_wnd.h", |
| 482 ] | 482 ] |
| 483 cflags = [ "/wd4245" ] | 483 cflags = [ "/wd4245" ] |
| 484 configs += [ "//build/config/win:windowed" ] | 484 configs += [ "//build/config/win:windowed" ] |
| 485 } | 485 } |
| 486 deps = [ | 486 deps = [ |
| 487 "//third_party/libyuv", | 487 "//third_party/libyuv", |
| 488 "//webrtc/api:libjingle_peerconnection", | 488 "//webrtc/pc:libjingle_peerconnection", |
| 489 "//webrtc/system_wrappers:field_trial_default", | 489 "//webrtc/system_wrappers:field_trial_default", |
| 490 "//webrtc/system_wrappers:metrics_default", | 490 "//webrtc/system_wrappers:metrics_default", |
| 491 ] | 491 ] |
| 492 if (is_linux) { | 492 if (is_linux) { |
| 493 sources += [ | 493 sources += [ |
| 494 "peerconnection/client/linux/main.cc", | 494 "peerconnection/client/linux/main.cc", |
| 495 "peerconnection/client/linux/main_wnd.cc", | 495 "peerconnection/client/linux/main_wnd.cc", |
| 496 "peerconnection/client/linux/main_wnd.h", | 496 "peerconnection/client/linux/main_wnd.h", |
| 497 ] | 497 ] |
| 498 libs = [ | 498 libs = [ |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 589 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 590 } | 590 } |
| 591 | 591 |
| 592 deps = [ | 592 deps = [ |
| 593 "../p2p:libstunprober", | 593 "../p2p:libstunprober", |
| 594 "../p2p:rtc_p2p", | 594 "../p2p:rtc_p2p", |
| 595 "../system_wrappers:field_trial_default", | 595 "../system_wrappers:field_trial_default", |
| 596 ] | 596 ] |
| 597 } | 597 } |
| 598 } | 598 } |
| OLD | NEW |