| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "//media/capture", | 488 "//media/capture", |
| 489 "//third_party/opus", | 489 "//third_party/opus", |
| 490 ] | 490 ] |
| 491 | 491 |
| 492 deps += [ | 492 deps += [ |
| 493 "//base", | 493 "//base", |
| 494 "//base:i18n", | 494 "//base:i18n", |
| 495 "//base/third_party/dynamic_annotations", | 495 "//base/third_party/dynamic_annotations", |
| 496 "//crypto", | 496 "//crypto", |
| 497 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp
via export_dependent_settings | 497 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp
via export_dependent_settings |
| 498 "//gpu/command_buffer/client:gles2_interface", |
| 498 "//gpu/command_buffer/common", | 499 "//gpu/command_buffer/common", |
| 499 "//skia", | 500 "//skia", |
| 500 "//third_party/libwebm", | 501 "//third_party/libwebm", |
| 501 "//third_party/libyuv", | 502 "//third_party/libyuv", |
| 502 "//third_party/opus", | 503 "//third_party/opus", |
| 503 "//ui/events:events_base", | 504 "//ui/events:events_base", |
| 504 "//ui/gfx", | 505 "//ui/gfx", |
| 505 "//ui/gfx/geometry", | 506 "//ui/gfx/geometry", |
| 507 "//ui/gl:gl", |
| 506 "//url", | 508 "//url", |
| 507 ] | 509 ] |
| 508 } | 510 } |
| 509 | 511 |
| 510 # Minimal media component for media/cast on iOS. | 512 # Minimal media component for media/cast on iOS. |
| 511 if (is_ios) { | 513 if (is_ios) { |
| 512 component("media_for_cast_ios") { | 514 component("media_for_cast_ios") { |
| 513 configs += [ | 515 configs += [ |
| 514 ":media_config", | 516 ":media_config", |
| 515 ":media_implementation", | 517 ":media_implementation", |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 fuzzer_test("media_vp9_parser_fuzzer") { | 869 fuzzer_test("media_vp9_parser_fuzzer") { |
| 868 sources = [ | 870 sources = [ |
| 869 "filters/vp9_parser_fuzzertest.cc", | 871 "filters/vp9_parser_fuzzertest.cc", |
| 870 ] | 872 ] |
| 871 deps = [ | 873 deps = [ |
| 872 ":media", | 874 ":media", |
| 873 "//base", | 875 "//base", |
| 874 ] | 876 ] |
| 875 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 877 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" |
| 876 } | 878 } |
| OLD | NEW |