| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 ] | 231 ] |
| 232 all_dependent_configs = [ ":media_dependent_config" ] | 232 all_dependent_configs = [ ":media_dependent_config" ] |
| 233 | 233 |
| 234 allow_circular_includes_from = [] | 234 allow_circular_includes_from = [] |
| 235 cflags = [] | 235 cflags = [] |
| 236 libs = [] | 236 libs = [] |
| 237 defines = [] | 237 defines = [] |
| 238 deps = [ | 238 deps = [ |
| 239 ":cdm_api", | 239 ":cdm_api", |
| 240 ] | 240 ] |
| 241 |
| 242 public_configs = [ "//third_party/libwebm:libwebm_config" ] |
| 241 public_deps = [] | 243 public_deps = [] |
| 242 | 244 |
| 243 include_dirs = [ "." ] | 245 include_dirs = [ "." ] |
| 244 if (media_use_ffmpeg) { | 246 if (media_use_ffmpeg) { |
| 245 deps += [ "//third_party/ffmpeg" ] | 247 deps += [ "//third_party/ffmpeg" ] |
| 246 sources += [ | 248 sources += [ |
| 247 "ffmpeg/ffmpeg_common.cc", | 249 "ffmpeg/ffmpeg_common.cc", |
| 248 "ffmpeg/ffmpeg_common.h", | 250 "ffmpeg/ffmpeg_common.h", |
| 249 "filters/audio_file_reader.cc", | 251 "filters/audio_file_reader.cc", |
| 250 "filters/audio_file_reader.h", | 252 "filters/audio_file_reader.h", |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 fuzzer_test("media_vp9_parser_fuzzer") { | 836 fuzzer_test("media_vp9_parser_fuzzer") { |
| 835 sources = [ | 837 sources = [ |
| 836 "filters/vp9_parser_fuzzertest.cc", | 838 "filters/vp9_parser_fuzzertest.cc", |
| 837 ] | 839 ] |
| 838 deps = [ | 840 deps = [ |
| 839 ":media", | 841 ":media", |
| 840 "//base", | 842 "//base", |
| 841 ] | 843 ] |
| 842 libfuzzer_options = [ "max_len = 400000" ] | 844 libfuzzer_options = [ "max_len = 400000" ] |
| 843 } | 845 } |
| OLD | NEW |