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

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

Issue 1406113002: Add AudioTrackRecorder for audio component of MediaStream recording. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minyue@'s comments Created 5 years, 1 month 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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build_overrides/v8.gni") 9 import("//build_overrides/v8.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
613 deps += [ "//third_party/webrtc/modules/desktop_capture" ] 613 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
614 } 614 }
615 615
616 if (is_chromeos) { 616 if (is_chromeos) {
617 sources += 617 sources +=
618 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ] 618 [ "../browser/media/capture/desktop_capture_device_aura_unittest.cc" ]
619 } 619 }
620 620
621 if (is_android) { 621 if (is_android) {
622 sources -= [ 622 sources -= [
623 "../renderer/media/audio_track_recorder_unittest.cc",
623 "../renderer/media/media_recorder_handler_unittest.cc", 624 "../renderer/media/media_recorder_handler_unittest.cc",
624 "../renderer/media/video_track_recorder_unittest.cc", 625 "../renderer/media/video_track_recorder_unittest.cc",
625 ] 626 ]
626 } 627 }
627 } 628 }
628 629
629 if (enable_web_speech) { 630 if (enable_web_speech) {
630 sources += 631 sources +=
631 rebase_path(content_tests_gypi_values.content_unittests_speech_sources, 632 rebase_path(content_tests_gypi_values.content_unittests_speech_sources,
632 ".", 633 ".",
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 "//gpu/blink", 817 "//gpu/blink",
817 "//testing/gtest", 818 "//testing/gtest",
818 "//third_party/WebKit/public:blink", 819 "//third_party/WebKit/public:blink",
819 "//ui/base", 820 "//ui/base",
820 "//ui/gfx", 821 "//ui/gfx",
821 "//ui/gfx/geometry", 822 "//ui/gfx/geometry",
822 "//ui/gl", 823 "//ui/gl",
823 "//ui/gl:test_support", 824 "//ui/gl:test_support",
824 ] 825 ]
825 } 826 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698