| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "../renderer/media/mock_peer_connection_impl.cc", | 131 "../renderer/media/mock_peer_connection_impl.cc", |
| 132 "../renderer/media/mock_peer_connection_impl.h", | 132 "../renderer/media/mock_peer_connection_impl.h", |
| 133 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", | 133 "../renderer/media/mock_web_rtc_peer_connection_handler_client.cc", |
| 134 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", | 134 "../renderer/media/mock_web_rtc_peer_connection_handler_client.h", |
| 135 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", | 135 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.cc", |
| 136 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", | 136 "../renderer/media/webrtc/mock_peer_connection_dependency_factory.h", |
| 137 ] | 137 ] |
| 138 | 138 |
| 139 deps += [ | 139 deps += [ |
| 140 "//third_party/libjingle:libjingle_webrtc", | 140 "//third_party/libjingle:libjingle_webrtc", |
| 141 "//third_party/webrtc/api:libjingle_peerconnection", |
| 141 "//third_party/webrtc/base:rtc_base", | 142 "//third_party/webrtc/base:rtc_base", |
| 143 "//third_party/webrtc/media:rtc_media", |
| 142 "//third_party/webrtc/modules/video_capture", | 144 "//third_party/webrtc/modules/video_capture", |
| 143 ] | 145 ] |
| 144 } | 146 } |
| 145 | 147 |
| 146 if (use_glib) { | 148 if (use_glib) { |
| 147 configs += [ "//build/config/linux:glib" ] | 149 configs += [ "//build/config/linux:glib" ] |
| 148 } | 150 } |
| 149 | 151 |
| 150 if (use_aura) { | 152 if (use_aura) { |
| 151 deps += [ | 153 deps += [ |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 } | 726 } |
| 725 | 727 |
| 726 if (enable_webrtc) { | 728 if (enable_webrtc) { |
| 727 sources += | 729 sources += |
| 728 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, | 730 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, |
| 729 ".", | 731 ".", |
| 730 "//content") | 732 "//content") |
| 731 deps += [ | 733 deps += [ |
| 732 "//media/blink", | 734 "//media/blink", |
| 733 "//third_party/libjingle:libjingle_webrtc", | 735 "//third_party/libjingle:libjingle_webrtc", |
| 736 "//third_party/webrtc/api:libjingle_peerconnection", |
| 734 "//third_party/webrtc/base:rtc_base", | 737 "//third_party/webrtc/base:rtc_base", |
| 738 "//third_party/webrtc/media:rtc_media", |
| 735 "//third_party/webrtc/modules/desktop_capture:primitives", | 739 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 736 "//third_party/webrtc/modules/video_capture", | 740 "//third_party/webrtc/modules/video_capture", |
| 737 "//ui/shell_dialogs:shell_dialogs", | 741 "//ui/shell_dialogs:shell_dialogs", |
| 738 ] | 742 ] |
| 739 | 743 |
| 740 if (is_linux || is_mac || is_win) { | 744 if (is_linux || is_mac || is_win) { |
| 741 sources += | 745 sources += |
| 742 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] | 746 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] |
| 743 deps += [ "//third_party/webrtc/modules/desktop_capture" ] | 747 deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
| 744 } | 748 } |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 | 912 |
| 909 fuzzer_test("renderer_fuzzer") { | 913 fuzzer_test("renderer_fuzzer") { |
| 910 sources = [ | 914 sources = [ |
| 911 "renderer_fuzzer.cc", | 915 "renderer_fuzzer.cc", |
| 912 ] | 916 ] |
| 913 deps = [ | 917 deps = [ |
| 914 ":test_support", | 918 ":test_support", |
| 915 "//content/shell:content_shell_lib", | 919 "//content/shell:content_shell_lib", |
| 916 ] | 920 ] |
| 917 } | 921 } |
| OLD | NEW |