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 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
595 # TODO(wolenetz): Fix size_t to int truncation in win64. | 595 # TODO(wolenetz): Fix size_t to int truncation in win64. |
596 # See http://crbug.com/171009 | 596 # See http://crbug.com/171009 |
597 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 597 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
598 | 598 |
599 deps = [ | 599 deps = [ |
600 ":media", | 600 ":media", |
601 ":test_support", | 601 ":test_support", |
602 "//base/test:test_support", | 602 "//base/test:test_support", |
603 "//gpu:test_support", | 603 "//gpu:test_support", |
604 "//gpu/command_buffer/common", | 604 "//gpu/command_buffer/common", |
| 605 "//gpu/skia_bindings", |
605 "//media/audio:test_support", | 606 "//media/audio:test_support", |
606 "//media/audio:unittests", | 607 "//media/audio:unittests", |
607 "//media/base:test_support", | 608 "//media/base:test_support", |
608 "//media/base:unittests", | 609 "//media/base:unittests", |
609 "//media/capture:unittests", | 610 "//media/capture:unittests", |
610 "//media/test:pipeline_integration_tests", | 611 "//media/test:pipeline_integration_tests", |
611 "//skia", # Direct dependency required to inherit config. | 612 "//skia", # Direct dependency required to inherit config. |
612 "//testing/gmock", | 613 "//testing/gmock", |
613 "//testing/gtest", | 614 "//testing/gtest", |
614 "//third_party/libwebm", | 615 "//third_party/libwebm", |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
867 fuzzer_test("media_vp9_parser_fuzzer") { | 868 fuzzer_test("media_vp9_parser_fuzzer") { |
868 sources = [ | 869 sources = [ |
869 "filters/vp9_parser_fuzzertest.cc", | 870 "filters/vp9_parser_fuzzertest.cc", |
870 ] | 871 ] |
871 deps = [ | 872 deps = [ |
872 ":media", | 873 ":media", |
873 "//base", | 874 "//base", |
874 ] | 875 ] |
875 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 876 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" |
876 } | 877 } |
OLD | NEW |