OLD | NEW |
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 "../renderer/media/mock_peer_connection_impl.cc", | 125 "../renderer/media/mock_peer_connection_impl.cc", |
126 "../renderer/media/mock_peer_connection_impl.h", | 126 "../renderer/media/mock_peer_connection_impl.h", |
127 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 127 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
128 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 128 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
129 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 129 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
130 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 130 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
131 ] | 131 ] |
132 | 132 |
133 deps += [ | 133 deps += [ |
134 "//third_party/libjingle:libjingle_webrtc", | 134 "//third_party/libjingle:libjingle_webrtc", |
| 135 "//third_party/libjingle:libpeerconnection", |
135 "//third_party/webrtc/base:rtc_base", | 136 "//third_party/webrtc/base:rtc_base", |
136 "//third_party/webrtc/modules/video_capture", | 137 "//third_party/webrtc/modules/video_capture", |
137 ] | 138 ] |
138 } | 139 } |
139 | 140 |
140 if (use_glib) { | 141 if (use_glib) { |
141 configs += [ "//build/config/linux:glib" ] | 142 configs += [ "//build/config/linux:glib" ] |
142 } | 143 } |
143 | 144 |
144 if (use_aura) { | 145 if (use_aura) { |
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 ] | 730 ] |
730 } | 731 } |
731 | 732 |
732 if (enable_webrtc) { | 733 if (enable_webrtc) { |
733 sources += | 734 sources += |
734 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 735 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
735 ".", | 736 ".", |
736 "//content") | 737 "//content") |
737 deps += [ | 738 deps += [ |
738 "//third_party/libjingle:libjingle_webrtc", | 739 "//third_party/libjingle:libjingle_webrtc", |
| 740 "//third_party/libjingle:libpeerconnection", |
739 "//third_party/webrtc/base:rtc_base", | 741 "//third_party/webrtc/base:rtc_base", |
740 "//third_party/webrtc/modules/desktop_capture:primitives", | 742 "//third_party/webrtc/modules/desktop_capture:primitives", |
741 "//third_party/webrtc/modules/video_capture", | 743 "//third_party/webrtc/modules/video_capture", |
742 "//ui/shell_dialogs:shell_dialogs", | 744 "//ui/shell_dialogs:shell_dialogs", |
743 ] | 745 ] |
744 | 746 |
745 if (is_linux || is_mac || is_win) { | 747 if (is_linux || is_mac || is_win) { |
746 sources += | 748 sources += |
747 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 749 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
748 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 750 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1016 "//gpu:test_support", | 1018 "//gpu:test_support", |
1017 "//media/base/android", | 1019 "//media/base/android", |
1018 "//media/base/android:media_java", | 1020 "//media/base/android:media_java", |
1019 "//media/capture/video/android:capture_java", | 1021 "//media/capture/video/android:capture_java", |
1020 "//testing/gmock", | 1022 "//testing/gmock", |
1021 "//ui/android:ui_java", | 1023 "//ui/android:ui_java", |
1022 ] | 1024 ] |
1023 } | 1025 } |
1024 } | 1026 } |
1025 } | 1027 } |
OLD | NEW |