| 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/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/linux/pkg_config.gni") | 8 import("//build/config/linux/pkg_config.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 } | 325 } |
| 326 | 326 |
| 327 if (media_use_libvpx) { | 327 if (media_use_libvpx) { |
| 328 sources += [ | 328 sources += [ |
| 329 "filters/vpx_video_decoder.cc", | 329 "filters/vpx_video_decoder.cc", |
| 330 "filters/vpx_video_decoder.h", | 330 "filters/vpx_video_decoder.h", |
| 331 ] | 331 ] |
| 332 deps += [ "//third_party/libvpx" ] | 332 deps += [ "//third_party/libvpx" ] |
| 333 } | 333 } |
| 334 | 334 |
| 335 if (media_use_libwebm) { |
| 336 sources += [ |
| 337 "capture/webm_muxer.cc", |
| 338 "capture/webm_muxer.h", |
| 339 ] |
| 340 deps += [ "//third_party/libwebm" ] |
| 341 } |
| 342 |
| 335 if (is_android) { | 343 if (is_android) { |
| 336 sources += [ | 344 sources += [ |
| 337 "capture/video/android/video_capture_device_android.cc", | 345 "capture/video/android/video_capture_device_android.cc", |
| 338 "capture/video/android/video_capture_device_android.h", | 346 "capture/video/android/video_capture_device_android.h", |
| 339 "capture/video/android/video_capture_device_factory_android.cc", | 347 "capture/video/android/video_capture_device_factory_android.cc", |
| 340 "capture/video/android/video_capture_device_factory_android.h", | 348 "capture/video/android/video_capture_device_factory_android.h", |
| 341 ] | 349 ] |
| 342 deps += [ | 350 deps += [ |
| 343 "//media/base/android", | 351 "//media/base/android", |
| 344 "//media/base/android:media_jni_headers", | 352 "//media/base/android:media_jni_headers", |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 "//media/base:test_support", | 774 "//media/base:test_support", |
| 767 "//media/test:pipeline_integration_tests", | 775 "//media/test:pipeline_integration_tests", |
| 768 "//testing/gmock", | 776 "//testing/gmock", |
| 769 "//testing/gtest", | 777 "//testing/gtest", |
| 770 "//third_party/ffmpeg", | 778 "//third_party/ffmpeg", |
| 771 "//ui/gfx/geometry", | 779 "//ui/gfx/geometry", |
| 772 "//ui/gfx:test_support", | 780 "//ui/gfx:test_support", |
| 773 ] | 781 ] |
| 774 } | 782 } |
| 775 } | 783 } |
| OLD | NEW |