| 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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 ] | 316 ] |
| 317 sources -= [ | 317 sources -= [ |
| 318 "filters/decrypting_audio_decoder.cc", | 318 "filters/decrypting_audio_decoder.cc", |
| 319 "filters/decrypting_audio_decoder.h", | 319 "filters/decrypting_audio_decoder.h", |
| 320 "filters/decrypting_video_decoder.cc", | 320 "filters/decrypting_video_decoder.cc", |
| 321 "filters/decrypting_video_decoder.h", | 321 "filters/decrypting_video_decoder.h", |
| 322 ] | 322 ] |
| 323 deps += [ | 323 deps += [ |
| 324 "//media/base/android", | 324 "//media/base/android", |
| 325 "//media/base/android:media_jni_headers", | 325 "//media/base/android:media_jni_headers", |
| 326 "//media/base/android:screen_capture_jni_headers", |
| 326 "//media/capture/video/android:capture_java", | 327 "//media/capture/video/android:capture_java", |
| 327 "//media/capture/video/android:capture_jni_headers", | 328 "//media/capture/video/android:capture_jni_headers", |
| 328 ] | 329 ] |
| 329 | 330 |
| 330 # Only 64 bit builds are using android-21 NDK library, check common.gypi | 331 # Only 64 bit builds are using android-21 NDK library, check common.gypi |
| 331 if (current_cpu == "arm64" || current_cpu == "x64" || | 332 if (current_cpu == "arm64" || current_cpu == "x64" || |
| 332 current_cpu == "mips64el") { | 333 current_cpu == "mips64el") { |
| 333 sources += [ | 334 sources += [ |
| 334 "base/android/ndk_media_codec_bridge.cc", | 335 "base/android/ndk_media_codec_bridge.cc", |
| 335 "base/android/ndk_media_codec_bridge.h", | 336 "base/android/ndk_media_codec_bridge.h", |
| (...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 fuzzer_test("media_vp9_parser_fuzzer") { | 839 fuzzer_test("media_vp9_parser_fuzzer") { |
| 839 sources = [ | 840 sources = [ |
| 840 "filters/vp9_parser_fuzzertest.cc", | 841 "filters/vp9_parser_fuzzertest.cc", |
| 841 ] | 842 ] |
| 842 deps = [ | 843 deps = [ |
| 843 ":media", | 844 ":media", |
| 844 "//base", | 845 "//base", |
| 845 ] | 846 ] |
| 846 libfuzzer_options = [ "max_len = 400000" ] | 847 libfuzzer_options = [ "max_len = 400000" ] |
| 847 } | 848 } |
| OLD | NEW |