| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 ] | 331 ] |
| 332 sources -= [ | 332 sources -= [ |
| 333 "filters/decrypting_audio_decoder.cc", | 333 "filters/decrypting_audio_decoder.cc", |
| 334 "filters/decrypting_audio_decoder.h", | 334 "filters/decrypting_audio_decoder.h", |
| 335 "filters/decrypting_video_decoder.cc", | 335 "filters/decrypting_video_decoder.cc", |
| 336 "filters/decrypting_video_decoder.h", | 336 "filters/decrypting_video_decoder.h", |
| 337 ] | 337 ] |
| 338 deps += [ | 338 deps += [ |
| 339 "//media/base/android", | 339 "//media/base/android", |
| 340 "//media/base/android:media_jni_headers", | 340 "//media/base/android:media_jni_headers", |
| 341 "//media/capture/content/android:screen_capture_java", |
| 342 "//media/capture/content/android:screen_capture_jni_headers", |
| 341 "//media/capture/video/android:capture_java", | 343 "//media/capture/video/android:capture_java", |
| 342 "//media/capture/video/android:capture_jni_headers", | 344 "//media/capture/video/android:capture_jni_headers", |
| 343 ] | 345 ] |
| 344 | 346 |
| 345 # Only 64 bit builds are using android-21 NDK library, check common.gypi | 347 # Only 64 bit builds are using android-21 NDK library, check common.gypi |
| 346 if (current_cpu == "arm64" || current_cpu == "x64" || | 348 if (current_cpu == "arm64" || current_cpu == "x64" || |
| 347 current_cpu == "mips64el") { | 349 current_cpu == "mips64el") { |
| 348 sources += [ | 350 sources += [ |
| 349 "base/android/ndk_media_codec_bridge.cc", | 351 "base/android/ndk_media_codec_bridge.cc", |
| 350 "base/android/ndk_media_codec_bridge.h", | 352 "base/android/ndk_media_codec_bridge.h", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 data_deps = [] | 615 data_deps = [] |
| 614 | 616 |
| 615 if (is_android) { | 617 if (is_android) { |
| 616 sources -= [ | 618 sources -= [ |
| 617 "filters/decrypting_audio_decoder_unittest.cc", | 619 "filters/decrypting_audio_decoder_unittest.cc", |
| 618 "filters/decrypting_video_decoder_unittest.cc", | 620 "filters/decrypting_video_decoder_unittest.cc", |
| 619 ] | 621 ] |
| 620 deps += [ | 622 deps += [ |
| 621 "//media/base/android:media_java", | 623 "//media/base/android:media_java", |
| 622 "//media/base/android:unittests", | 624 "//media/base/android:unittests", |
| 625 "//media/capture/content/android:screen_capture_java", |
| 623 "//media/capture/video/android:capture_java", | 626 "//media/capture/video/android:capture_java", |
| 624 "//ui/android:ui_java", | 627 "//ui/android:ui_java", |
| 625 ] | 628 ] |
| 626 } | 629 } |
| 627 if (is_mac || is_ios) { | 630 if (is_mac || is_ios) { |
| 628 deps += [ "//media/base/mac:unittests" ] | 631 deps += [ "//media/base/mac:unittests" ] |
| 629 } | 632 } |
| 630 | 633 |
| 631 # If ExternalClearKey is built, we can test CdmAdapter. | 634 # If ExternalClearKey is built, we can test CdmAdapter. |
| 632 if (enable_pepper_cdms) { | 635 if (enable_pepper_cdms) { |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 sources = [ | 885 sources = [ |
| 883 "filters/vpx_video_decoder_fuzzertest.cc", | 886 "filters/vpx_video_decoder_fuzzertest.cc", |
| 884 ] | 887 ] |
| 885 deps = [ | 888 deps = [ |
| 886 ":media", | 889 ":media", |
| 887 "//base", | 890 "//base", |
| 888 ] | 891 ] |
| 889 libfuzzer_options = [ "max_len = 400000" ] | 892 libfuzzer_options = [ "max_len = 400000" ] |
| 890 seed_corpus = "//media/test/data" | 893 seed_corpus = "//media/test/data" |
| 891 } | 894 } |
| OLD | NEW |