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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 | 61 |
62 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 62 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
63 | 63 |
64 deps = [ | 64 deps = [ |
65 ":pipeline_integration_test_base", | 65 ":pipeline_integration_test_base", |
66 "//base", | 66 "//base", |
67 "//media:test_support", | 67 "//media:test_support", |
68 "//media/base:test_support", | 68 "//media/base:test_support", |
69 "//media/mojo/clients", | 69 "//media/mojo/clients", |
70 "//services/service_manager/public/cpp:service_test_support", | 70 "//services/service_manager/public/cpp:service_test_support", |
| 71 |
| 72 # Needed for the opus_config |
| 73 "//third_party/opus", |
71 "//url", | 74 "//url", |
72 | 75 |
73 # TODO(dalecurtis): Required since the gmock header is included in the | 76 # TODO(dalecurtis): Required since the gmock header is included in the |
74 # header for pipeline_integration_test_base.h. This should be moved into | 77 # header for pipeline_integration_test_base.h. This should be moved into |
75 # the .cc file to avoid the extra dependency here. | 78 # the .cc file to avoid the extra dependency here. |
76 "//testing/gmock", | 79 "//testing/gmock", |
77 ] | 80 ] |
78 } | 81 } |
79 } | 82 } |
80 | 83 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 # TODO(dalecurtis): Required since the gmock header is included in the | 150 # TODO(dalecurtis): Required since the gmock header is included in the |
148 # header for pipeline_integration_test_base.h. This should be | 151 # header for pipeline_integration_test_base.h. This should be |
149 # moved into the .cc file to avoid the extra dependency here. | 152 # moved into the .cc file to avoid the extra dependency here. |
150 "//testing/gmock", | 153 "//testing/gmock", |
151 "//ui/gfx:test_support", | 154 "//ui/gfx:test_support", |
152 ] | 155 ] |
153 | 156 |
154 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 157 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
155 libfuzzer_options = [ "runs=500000" ] | 158 libfuzzer_options = [ "runs=500000" ] |
156 } | 159 } |
OLD | NEW |