| 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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 314 | 314 |
| 315 if (is_android) { | 315 if (is_android) { |
| 316 sources += [ | 316 sources += [ |
| 317 "video/capture/android/video_capture_device_android.cc", | 317 "video/capture/android/video_capture_device_android.cc", |
| 318 "video/capture/android/video_capture_device_android.h", | 318 "video/capture/android/video_capture_device_android.h", |
| 319 "video/capture/android/video_capture_device_factory_android.cc", | 319 "video/capture/android/video_capture_device_factory_android.cc", |
| 320 "video/capture/android/video_capture_device_factory_android.h", | 320 "video/capture/android/video_capture_device_factory_android.h", |
| 321 ] | 321 ] |
| 322 deps += [ | 322 deps += [ |
| 323 "//media/base/android", | 323 "//media/base/android", |
| 324 "//media/base/android:media_java", | |
| 325 "//media/base/android:media_jni_headers", | 324 "//media/base/android:media_jni_headers", |
| 326 "//media/base/android:video_capture_jni_headers", | 325 "//media/base/android:video_capture_jni_headers", |
| 327 ] | 326 ] |
| 328 allow_circular_includes_from = [ "//media/base/android" ] | 327 allow_circular_includes_from = [ "//media/base/android" ] |
| 329 } else { | 328 } else { |
| 330 sources += [ | 329 sources += [ |
| 331 "filters/opus_audio_decoder.cc", | 330 "filters/opus_audio_decoder.cc", |
| 332 "filters/opus_audio_decoder.h", | 331 "filters/opus_audio_decoder.h", |
| 333 "renderers/default_renderer_factory.cc", | 332 "renderers/default_renderer_factory.cc", |
| 334 "renderers/default_renderer_factory.h", | 333 "renderers/default_renderer_factory.h", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 "//media/base:test_support", | 736 "//media/base:test_support", |
| 738 "//media/test:pipeline_integration_tests", | 737 "//media/test:pipeline_integration_tests", |
| 739 "//testing/gmock", | 738 "//testing/gmock", |
| 740 "//testing/gtest", | 739 "//testing/gtest", |
| 741 "//third_party/ffmpeg", | 740 "//third_party/ffmpeg", |
| 742 "//ui/gfx/geometry", | 741 "//ui/gfx/geometry", |
| 743 "//ui/gfx:test_support", | 742 "//ui/gfx:test_support", |
| 744 ] | 743 ] |
| 745 } | 744 } |
| 746 } | 745 } |
| OLD | NEW |