| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 | 783 |
| 784 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. | 784 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. |
| 785 component("shared_memory_support") { | 785 component("shared_memory_support") { |
| 786 sources = [ | 786 sources = [ |
| 787 "base/audio_bus.cc", | 787 "base/audio_bus.cc", |
| 788 "base/audio_bus.h", | 788 "base/audio_bus.h", |
| 789 "base/audio_parameters.cc", | 789 "base/audio_parameters.cc", |
| 790 "base/audio_parameters.h", | 790 "base/audio_parameters.h", |
| 791 "base/audio_point.cc", | 791 "base/audio_point.cc", |
| 792 "base/audio_point.h", | 792 "base/audio_point.h", |
| 793 "base/audio_sample_types.h", |
| 793 "base/channel_layout.cc", | 794 "base/channel_layout.cc", |
| 794 "base/channel_layout.h", | 795 "base/channel_layout.h", |
| 795 "base/limits.h", | 796 "base/limits.h", |
| 796 "base/media_export.h", | 797 "base/media_export.h", |
| 797 "base/vector_math.cc", | 798 "base/vector_math.cc", |
| 798 "base/vector_math.h", | 799 "base/vector_math.h", |
| 799 "base/vector_math_testing.h", | 800 "base/vector_math_testing.h", |
| 800 ] | 801 ] |
| 801 configs += [ | 802 configs += [ |
| 802 ":media_config", | 803 ":media_config", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 882 sources = [ | 883 sources = [ |
| 883 "filters/vpx_video_decoder_fuzzertest.cc", | 884 "filters/vpx_video_decoder_fuzzertest.cc", |
| 884 ] | 885 ] |
| 885 deps = [ | 886 deps = [ |
| 886 ":media", | 887 ":media", |
| 887 "//base", | 888 "//base", |
| 888 ] | 889 ] |
| 889 libfuzzer_options = [ "max_len = 400000" ] | 890 libfuzzer_options = [ "max_len = 400000" ] |
| 890 seed_corpus = "//media/test/data" | 891 seed_corpus = "//media/test/data" |
| 891 } | 892 } |
| OLD | NEW |