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