| 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 21 matching lines...) Expand all Loading... |
| 32 "pipeline_integration_test_base.cc", | 32 "pipeline_integration_test_base.cc", |
| 33 "pipeline_integration_test_base.h", | 33 "pipeline_integration_test_base.h", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 "//media", | 37 "//media", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 "//base", | 41 "//base", |
| 42 "//base/test:test_support", | |
| 43 "//media:test_support", | 42 "//media:test_support", |
| 44 "//media/audio:test_support", | 43 "//media/audio:test_support", |
| 45 "//media/base:test_support", | 44 "//media/base:test_support", |
| 46 "//testing/gmock", | 45 "//testing/gmock", |
| 47 "//testing/gtest", | 46 "//testing/gtest", |
| 48 ] | 47 ] |
| 49 } | 48 } |
| 50 } | 49 } |
| 51 | 50 |
| 52 source_set("pipeline_integration_tests") { | 51 source_set("pipeline_integration_tests") { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 ] | 155 ] |
| 157 | 156 |
| 158 libfuzzer_options = [ | 157 libfuzzer_options = [ |
| 159 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 158 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
| 160 "runs=500000", | 159 "runs=500000", |
| 161 | 160 |
| 162 # This is done to suppress tons of log messages generated by gmock asserts. | 161 # This is done to suppress tons of log messages generated by gmock asserts. |
| 163 "close_fd_mask=1", | 162 "close_fd_mask=1", |
| 164 ] | 163 ] |
| 165 } | 164 } |
| OLD | NEW |