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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 "../renderer/media/mock_peer_connection_impl.cc", | 130 "../renderer/media/mock_peer_connection_impl.cc", |
131 "../renderer/media/mock_peer_connection_impl.h", | 131 "../renderer/media/mock_peer_connection_impl.h", |
132 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 132 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
133 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 133 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
134 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 134 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
135 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 135 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
136 ] | 136 ] |
137 | 137 |
138 deps += [ | 138 deps += [ |
139 "//third_party/libjingle:libjingle_webrtc", | 139 "//third_party/libjingle:libjingle_webrtc", |
| 140 "//third_party/webrtc/api:libjingle_peerconnection", |
140 "//third_party/webrtc/base:rtc_base", | 141 "//third_party/webrtc/base:rtc_base", |
| 142 "//third_party/webrtc/media:rtc_media", |
141 "//third_party/webrtc/modules/video_capture", | 143 "//third_party/webrtc/modules/video_capture", |
142 ] | 144 ] |
143 } | 145 } |
144 | 146 |
145 if (use_glib) { | 147 if (use_glib) { |
146 configs += [ "//build/config/linux:glib" ] | 148 configs += [ "//build/config/linux:glib" ] |
147 } | 149 } |
148 | 150 |
149 if (use_aura) { | 151 if (use_aura) { |
150 deps += [ | 152 deps += [ |
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 } | 724 } |
723 | 725 |
724 if (enable_webrtc) { | 726 if (enable_webrtc) { |
725 sources += | 727 sources += |
726 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 728 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
727 ".", | 729 ".", |
728 "//content") | 730 "//content") |
729 deps += [ | 731 deps += [ |
730 "//media/blink", | 732 "//media/blink", |
731 "//third_party/libjingle:libjingle_webrtc", | 733 "//third_party/libjingle:libjingle_webrtc", |
| 734 "//third_party/webrtc/api:libjingle_peerconnection", |
732 "//third_party/webrtc/base:rtc_base", | 735 "//third_party/webrtc/base:rtc_base", |
| 736 "//third_party/webrtc/media:rtc_media", |
733 "//third_party/webrtc/modules/desktop_capture:primitives", | 737 "//third_party/webrtc/modules/desktop_capture:primitives", |
734 "//third_party/webrtc/modules/video_capture", | 738 "//third_party/webrtc/modules/video_capture", |
735 "//ui/shell_dialogs:shell_dialogs", | 739 "//ui/shell_dialogs:shell_dialogs", |
736 ] | 740 ] |
737 | 741 |
738 if (is_linux || is_mac || is_win) { | 742 if (is_linux || is_mac || is_win) { |
739 sources += | 743 sources += |
740 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 744 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
741 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 745 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
742 } | 746 } |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
896 "//testing/gtest", | 900 "//testing/gtest", |
897 "//testing/perf", | 901 "//testing/perf", |
898 "//ui/gfx", | 902 "//ui/gfx", |
899 "//ui/gfx/geometry", | 903 "//ui/gfx/geometry", |
900 ] | 904 ] |
901 | 905 |
902 if (is_android) { | 906 if (is_android) { |
903 deps += [ "//testing/android/native_test:native_test_native_code" ] | 907 deps += [ "//testing/android/native_test:native_test_native_code" ] |
904 } | 908 } |
905 } | 909 } |
OLD | NEW |