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

Unified Diff: media/BUILD.gn

Issue 1727953005: Enable AudioDecoder unit tests on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added media.gyp changes Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/base/audio_hash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/BUILD.gn
diff --git a/media/BUILD.gn b/media/BUILD.gn
index 02a4917fe592b72db617c9f4db3a61aed7acfeab..869ebbb38bb0b25cd0a049767f0d19e9b24f5016 100644
--- a/media/BUILD.gn
+++ b/media/BUILD.gn
@@ -640,6 +640,9 @@ test("media_unittests") {
"cdm/simple_cdm_buffer.h",
"filters/audio_clock_unittest.cc",
"filters/audio_decoder_selector_unittest.cc",
+ "filters/audio_decoder_test.h",
+ "filters/audio_decoder_unittest.cc",
+ "filters/audio_decoder_unittest_chromium.cc",
"filters/audio_renderer_algorithm_unittest.cc",
"filters/chunk_demuxer_unittest.cc",
"filters/decrypting_audio_decoder_unittest.cc",
@@ -743,12 +746,15 @@ test("media_unittests") {
"filters/in_memory_url_protocol_unittest.cc",
]
+ if (!is_android || ffmpeg_branding == "Chrome") {
Tima Vaisburd 2016/02/26 20:58:48 On GYP side ffmpeg_branding seems not defined for
+ sources += [ "filters/audio_decoder_unittest_ffmpeg.cc" ]
+ }
+
if (!is_android) {
sources += [
# These tests are confused by Android always having proprietary
# codecs enabled, but ffmpeg_branding=Chromium. These should be
# fixed, http://crbug.com/570762.
- "filters/audio_decoder_unittest.cc",
"filters/audio_file_reader_unittest.cc",
"filters/ffmpeg_demuxer_unittest.cc",
« no previous file with comments | « no previous file | media/base/audio_hash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698