| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 if (current_cpu != "arm" && is_chromeos) { | 354 if (current_cpu != "arm" && is_chromeos) { |
| 355 sources += [ | 355 sources += [ |
| 356 "filters/h264_bitstream_buffer.cc", | 356 "filters/h264_bitstream_buffer.cc", |
| 357 "filters/h264_bitstream_buffer.h", | 357 "filters/h264_bitstream_buffer.h", |
| 358 ] | 358 ] |
| 359 } | 359 } |
| 360 | 360 |
| 361 if (is_mac) { | 361 if (is_mac) { |
| 362 public_deps += [ "//media/base/mac" ] | 362 public_deps += [ "//media/base/mac" ] |
| 363 libs += [ | 363 libs += [ |
| 364 "ApplicationServices.framework", # Temporary hack around https://crbug.co
m/620127. |
| 364 "CoreFoundation.framework", | 365 "CoreFoundation.framework", |
| 365 "CoreGraphics.framework", | 366 "CoreGraphics.framework", |
| 366 "Foundation.framework", | 367 "Foundation.framework", |
| 367 ] | 368 ] |
| 368 } | 369 } |
| 369 | 370 |
| 370 if (is_ios) { | 371 if (is_ios) { |
| 371 deps += [ "//media/base/mac" ] | 372 deps += [ "//media/base/mac" ] |
| 372 } | 373 } |
| 373 | 374 |
| (...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 sources = [ | 881 sources = [ |
| 881 "filters/vpx_video_decoder_fuzzertest.cc", | 882 "filters/vpx_video_decoder_fuzzertest.cc", |
| 882 ] | 883 ] |
| 883 deps = [ | 884 deps = [ |
| 884 ":media", | 885 ":media", |
| 885 "//base", | 886 "//base", |
| 886 ] | 887 ] |
| 887 libfuzzer_options = [ "max_len = 400000" ] | 888 libfuzzer_options = [ "max_len = 400000" ] |
| 888 seed_corpus = "//media/test/data" | 889 seed_corpus = "//media/test/data" |
| 889 } | 890 } |
| OLD | NEW |