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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/arm.gni") | 7 import("//build/config/arm.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/linux/pkg_config.gni") | 9 import("//build/config/linux/pkg_config.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 sources -= [ | 387 sources -= [ |
388 "filters/ffmpeg_video_decoder.cc", | 388 "filters/ffmpeg_video_decoder.cc", |
389 "filters/ffmpeg_video_decoder.h", | 389 "filters/ffmpeg_video_decoder.h", |
390 ] | 390 ] |
391 } | 391 } |
392 sources += [ | 392 sources += [ |
393 "capture/video/android/video_capture_device_android.cc", | 393 "capture/video/android/video_capture_device_android.cc", |
394 "capture/video/android/video_capture_device_android.h", | 394 "capture/video/android/video_capture_device_android.h", |
395 "capture/video/android/video_capture_device_factory_android.cc", | 395 "capture/video/android/video_capture_device_factory_android.cc", |
396 "capture/video/android/video_capture_device_factory_android.h", | 396 "capture/video/android/video_capture_device_factory_android.h", |
| 397 "filters/android/android_audio_decoder.cc", |
| 398 "filters/android/android_audio_decoder.h", |
397 ] | 399 ] |
398 sources -= [ | 400 sources -= [ |
399 "filters/decrypting_audio_decoder.cc", | 401 "filters/decrypting_audio_decoder.cc", |
400 "filters/decrypting_audio_decoder.h", | 402 "filters/decrypting_audio_decoder.h", |
401 "filters/decrypting_video_decoder.cc", | 403 "filters/decrypting_video_decoder.cc", |
402 "filters/decrypting_video_decoder.h", | 404 "filters/decrypting_video_decoder.h", |
403 ] | 405 ] |
404 deps += [ | 406 deps += [ |
405 "//media/base/android", | 407 "//media/base/android", |
406 "//media/base/android:media_jni_headers", | 408 "//media/base/android:media_jni_headers", |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 "//media/base:test_support", | 911 "//media/base:test_support", |
910 "//media/test:pipeline_integration_tests", | 912 "//media/test:pipeline_integration_tests", |
911 "//testing/gmock", | 913 "//testing/gmock", |
912 "//testing/gtest", | 914 "//testing/gtest", |
913 "//third_party/ffmpeg", | 915 "//third_party/ffmpeg", |
914 "//ui/gfx:test_support", | 916 "//ui/gfx:test_support", |
915 "//ui/gfx/geometry", | 917 "//ui/gfx/geometry", |
916 ] | 918 ] |
917 } | 919 } |
918 } | 920 } |
OLD | NEW |