Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Side by Side Diff: media/test/BUILD.gn

Issue 2710133003: Replace FFmpegDemuxer thread per element with base::TaskScheduler. (Closed)
Patch Set: Give WeakPtr to URLProtocol. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
42 "//media:test_support", 43 "//media:test_support",
43 "//media/audio:test_support", 44 "//media/audio:test_support",
44 "//media/base:test_support", 45 "//media/base:test_support",
45 "//testing/gmock", 46 "//testing/gmock",
46 "//testing/gtest", 47 "//testing/gtest",
47 ] 48 ]
48 } 49 }
49 } 50 }
50 51
51 source_set("pipeline_integration_tests") { 52 source_set("pipeline_integration_tests") {
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ] 156 ]
156 157
157 libfuzzer_options = [ 158 libfuzzer_options = [
158 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. 159 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error.
159 "runs=500000", 160 "runs=500000",
160 161
161 # This is done to suppress tons of log messages generated by gmock asserts. 162 # This is done to suppress tons of log messages generated by gmock asserts.
162 "close_fd_mask=1", 163 "close_fd_mask=1",
163 ] 164 ]
164 } 165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698