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

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

Issue 1599533003: MediaCaptureFromElement: add support for audio captureStream(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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("//build_overrides/v8.gni") 10 import("//build_overrides/v8.gni")
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after
719 "//ppapi/shared_impl:test_support", 719 "//ppapi/shared_impl:test_support",
720 ] 720 ]
721 } 721 }
722 722
723 if (enable_webrtc) { 723 if (enable_webrtc) {
724 sources += 724 sources +=
725 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources, 725 rebase_path(content_tests_gypi_values.content_unittests_webrtc_sources,
726 ".", 726 ".",
727 "//content") 727 "//content")
728 deps += [ 728 deps += [
729 "//media/blink",
729 "//third_party/libjingle:libjingle_webrtc", 730 "//third_party/libjingle:libjingle_webrtc",
730 "//third_party/webrtc/base:rtc_base", 731 "//third_party/webrtc/base:rtc_base",
731 "//third_party/webrtc/modules/desktop_capture:primitives", 732 "//third_party/webrtc/modules/desktop_capture:primitives",
732 "//third_party/webrtc/modules/video_capture", 733 "//third_party/webrtc/modules/video_capture",
733 "//ui/shell_dialogs:shell_dialogs", 734 "//ui/shell_dialogs:shell_dialogs",
734 ] 735 ]
735 736
736 if (is_linux || is_mac || is_win) { 737 if (is_linux || is_mac || is_win) {
737 sources += 738 sources +=
738 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ] 739 [ "../browser/media/capture/desktop_capture_device_unittest.cc" ]
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 "//testing/gtest", 895 "//testing/gtest",
895 "//testing/perf", 896 "//testing/perf",
896 "//ui/gfx", 897 "//ui/gfx",
897 "//ui/gfx/geometry", 898 "//ui/gfx/geometry",
898 ] 899 ]
899 900
900 if (is_android) { 901 if (is_android) {
901 deps += [ "//testing/android/native_test:native_test_native_code" ] 902 deps += [ "//testing/android/native_test:native_test_native_code" ]
902 } 903 }
903 } 904 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698