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

Side by Side Diff: content/test/BUILD.gn

Issue 1808233002: Remove libpeerconnection target from third_party/libjingle (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "../renderer/media/mock_peer_connection_impl.cc", 132 "../renderer/media/mock_peer_connection_impl.cc",
133 "../renderer/media/mock_peer_connection_impl.h", 133 "../renderer/media/mock_peer_connection_impl.h",
134 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", 134 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc",
135 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", 135 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h",
136 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", 136 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc",
137 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", 137 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h",
138 ] 138 ]
139 139
140 deps += [ 140 deps += [
141 "//third_party/libjingle:libjingle_webrtc", 141 "//third_party/libjingle:libjingle_webrtc",
142 "//third_party/libjingle:libpeerconnection",
143 "//third_party/webrtc/modules/video_capture", 142 "//third_party/webrtc/modules/video_capture",
144 ] 143 ]
145 } 144 }
146 145
147 if (use_glib) { 146 if (use_glib) {
148 configs += [ "//build/config/linux:glib" ] 147 configs += [ "//build/config/linux:glib" ]
149 } 148 }
150 149
151 if (use_aura) { 150 if (use_aura) {
152 deps += [ 151 deps += [
(...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 "//content") 674 "//content")
676 } 675 }
677 676
678 if (enable_webrtc) { 677 if (enable_webrtc) {
679 sources += 678 sources +=
680 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, 679 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources,
681 ".", 680 ".",
682 "//content") 681 "//content")
683 deps += [ 682 deps += [
684 "//third_party/libjingle:libjingle_webrtc", 683 "//third_party/libjingle:libjingle_webrtc",
685 "//third_party/libjingle:libpeerconnection",
686 "//third_party/webrtc/modules/video_capture", 684 "//third_party/webrtc/modules/video_capture",
687 "//ui/shell_dialogs:shell_dialogs", 685 "//ui/shell_dialogs:shell_dialogs",
688 ] 686 ]
689 687
690 if (is_linux || is_mac || is_win) { 688 if (is_linux || is_mac || is_win) {
691 sources += 689 sources +=
692 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] 690 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ]
693 deps += [ "//third_party/webrtc/modules/desktop_capture" ] 691 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
694 } 692 }
695 693
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 "//gpu:test_support", 926 "//gpu:test_support",
929 "//media/base/android", 927 "//media/base/android",
930 "//media/base/android:media_java", 928 "//media/base/android:media_java",
931 "//media/capture/video/android:capture_java", 929 "//media/capture/video/android:capture_java",
932 "//testing/gmock", 930 "//testing/gmock",
933 "//ui/android:ui_java", 931 "//ui/android:ui_java",
934 ] 932 ]
935 } 933 }
936 } 934 }
937 } 935 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698