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

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

Issue 2022833002: Migrate libjingle to WebRTC build targets. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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
« no previous file with comments | « content/renderer/BUILD.gn ('k') | jingle/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//mojo/public/tools/bindings/mojom.gni") 10 import("//mojo/public/tools/bindings/mojom.gni")
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "../renderer/media/mock_peer_connection_impl.cc", 142 "../renderer/media/mock_peer_connection_impl.cc",
143 "../renderer/media/mock_peer_connection_impl.h", 143 "../renderer/media/mock_peer_connection_impl.h",
144 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", 144 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc",
145 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", 145 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h",
146 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", 146 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc",
147 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", 147 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h",
148 ] 148 ]
149 149
150 deps += [ 150 deps += [
151 "//third_party/libjingle:libjingle_webrtc", 151 "//third_party/libjingle:libjingle_webrtc",
152 "//third_party/webrtc/api:libjingle_peerconnection",
152 "//third_party/webrtc/base:rtc_base", 153 "//third_party/webrtc/base:rtc_base",
154 "//third_party/webrtc/media:rtc_media",
153 "//third_party/webrtc/modules/video_capture", 155 "//third_party/webrtc/modules/video_capture",
154 ] 156 ]
155 } 157 }
156 158
157 if (use_glib) { 159 if (use_glib) {
158 configs += [ "//build/config/linux:glib" ] 160 configs += [ "//build/config/linux:glib" ]
159 } 161 }
160 162
161 if (use_aura) { 163 if (use_aura) {
162 deps += [ 164 deps += [
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 } 723 }
722 724
723 if (enable_webrtc) { 725 if (enable_webrtc) {
724 sources += 726 sources +=
725 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, 727 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources,
726 ".", 728 ".",
727 "//content") 729 "//content")
728 deps += [ 730 deps += [
729 "//media/blink", 731 "//media/blink",
730 "//third_party/libjingle:libjingle_webrtc", 732 "//third_party/libjingle:libjingle_webrtc",
733 "//third_party/webrtc/api:libjingle_peerconnection",
731 "//third_party/webrtc/base:rtc_base", 734 "//third_party/webrtc/base:rtc_base",
735 "//third_party/webrtc/media:rtc_media",
732 "//third_party/webrtc/modules/desktop_capture:primitives", 736 "//third_party/webrtc/modules/desktop_capture:primitives",
733 "//third_party/webrtc/modules/video_capture", 737 "//third_party/webrtc/modules/video_capture",
734 "//ui/shell_dialogs:shell_dialogs", 738 "//ui/shell_dialogs:shell_dialogs",
735 ] 739 ]
736 740
737 if (is_linux || is_mac || is_win) { 741 if (is_linux || is_mac || is_win) {
738 sources += 742 sources +=
739 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] 743 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ]
740 deps += [ "//third_party/webrtc/modules/desktop_capture" ] 744 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
741 } 745 }
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 if (is_android) { 901 if (is_android) {
898 deps += [ "//testing/android/native_test:native_test_native_code" ] 902 deps += [ "//testing/android/native_test:native_test_native_code" ]
899 } 903 }
900 } 904 }
901 905
902 group("fuzzers") { 906 group("fuzzers") {
903 deps = [ 907 deps = [
904 "//content/test/fuzzer", 908 "//content/test/fuzzer",
905 ] 909 ]
906 } 910 }
OLDNEW
« no previous file with comments | « content/renderer/BUILD.gn ('k') | jingle/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698