| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 cflags = [] | 272 cflags = [] |
| 273 libs = [] | 273 libs = [] |
| 274 defines = [] | 274 defines = [] |
| 275 deps = [ | 275 deps = [ |
| 276 ":cdm_api", | 276 ":cdm_api", |
| 277 ] | 277 ] |
| 278 | 278 |
| 279 public_configs = [ "//third_party/libwebm:libwebm_config" ] | 279 public_configs = [ "//third_party/libwebm:libwebm_config" ] |
| 280 public_deps = [ | 280 public_deps = [ |
| 281 ":filters_common", | 281 ":filters_common", |
| 282 "//ui/gfx:color_space", |
| 282 ] | 283 ] |
| 283 | 284 |
| 284 include_dirs = [ "." ] | 285 include_dirs = [ "." ] |
| 285 if (media_use_ffmpeg) { | 286 if (media_use_ffmpeg) { |
| 286 public_deps += [ "//media/ffmpeg" ] | 287 public_deps += [ "//media/ffmpeg" ] |
| 287 deps += [ | 288 deps += [ |
| 288 "//third_party/ffmpeg", | 289 "//third_party/ffmpeg", |
| 289 "//third_party/opus", | 290 "//third_party/opus", |
| 290 ] | 291 ] |
| 291 sources += [ | 292 sources += [ |
| (...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 fuzzer_test("media_mp4_avcc_parser_fuzzer") { | 959 fuzzer_test("media_mp4_avcc_parser_fuzzer") { |
| 959 sources = [ | 960 sources = [ |
| 960 "formats/mp4/mp4_avcc_parser_fuzzer.cc", | 961 "formats/mp4/mp4_avcc_parser_fuzzer.cc", |
| 961 ] | 962 ] |
| 962 deps = [ | 963 deps = [ |
| 963 ":media", | 964 ":media", |
| 964 "//base", | 965 "//base", |
| 965 ] | 966 ] |
| 966 } | 967 } |
| 967 } | 968 } |
| OLD | NEW |