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("//media/media_options.gni") | 5 import("//media/media_options.gni") |
6 import("//testing/libfuzzer/fuzzer_test.gni") | 6 import("//testing/libfuzzer/fuzzer_test.gni") |
7 | 7 |
8 source_set("run_all_unittests") { | 8 source_set("run_all_unittests") { |
9 testonly = true | 9 testonly = true |
10 sources = [ | 10 sources = [ |
(...skipping 11 matching lines...) Expand all Loading... |
22 if (is_android) { | 22 if (is_android) { |
23 deps += [ "//ui/gl" ] | 23 deps += [ "//ui/gl" ] |
24 } | 24 } |
25 } | 25 } |
26 | 26 |
27 source_set("pipeline_integration_test_base") { | 27 source_set("pipeline_integration_test_base") { |
28 testonly = true | 28 testonly = true |
29 | 29 |
30 if (media_use_ffmpeg) { | 30 if (media_use_ffmpeg) { |
31 sources = [ | 31 sources = [ |
| 32 "fake_encrypted_media.cc", |
| 33 "fake_encrypted_media.h", |
| 34 "mock_media_source.cc", |
| 35 "mock_media_source.h", |
32 "pipeline_integration_test_base.cc", | 36 "pipeline_integration_test_base.cc", |
33 "pipeline_integration_test_base.h", | 37 "pipeline_integration_test_base.h", |
34 ] | 38 ] |
35 | 39 |
36 public_deps = [ | 40 public_deps = [ |
37 "//media", | 41 "//media", |
38 ] | 42 ] |
39 | 43 |
40 deps = [ | 44 deps = [ |
41 "//base", | 45 "//base", |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 ] | 160 ] |
157 | 161 |
158 libfuzzer_options = [ | 162 libfuzzer_options = [ |
159 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 163 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
160 "runs=500000", | 164 "runs=500000", |
161 | 165 |
162 # This is done to suppress tons of log messages generated by gmock asserts. | 166 # This is done to suppress tons of log messages generated by gmock asserts. |
163 "close_fd_mask=1", | 167 "close_fd_mask=1", |
164 ] | 168 ] |
165 } | 169 } |
OLD | NEW |