| 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 = [ |
| 11 "run_all_unittests.cc", | 11 "run_all_unittests.cc", |
| 12 ] | 12 ] |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 "//base", | 15 "//base", |
| 16 "//base/test:test_support", | 16 "//base/test:test_support", |
| 17 "//media", | 17 "//media", |
| 18 "//media/base:test_support", | 18 "//media/base:test_support", |
| 19 "//mojo/edk/system", |
| 19 ] | 20 ] |
| 20 | 21 |
| 21 if (is_android) { | 22 if (is_android) { |
| 22 deps += [ "//ui/gl" ] | 23 deps += [ "//ui/gl" ] |
| 23 } | 24 } |
| 24 } | 25 } |
| 25 | 26 |
| 26 source_set("pipeline_integration_test_base") { | 27 source_set("pipeline_integration_test_base") { |
| 27 testonly = true | 28 testonly = true |
| 28 | 29 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 # TODO(dalecurtis): Required since the gmock header is included in the | 147 # TODO(dalecurtis): Required since the gmock header is included in the |
| 147 # header for pipeline_integration_test_base.h. This should be | 148 # header for pipeline_integration_test_base.h. This should be |
| 148 # moved into the .cc file to avoid the extra dependency here. | 149 # moved into the .cc file to avoid the extra dependency here. |
| 149 "//testing/gmock", | 150 "//testing/gmock", |
| 150 "//ui/gfx:test_support", | 151 "//ui/gfx:test_support", |
| 151 ] | 152 ] |
| 152 | 153 |
| 153 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 154 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
| 154 libfuzzer_options = [ "runs=500000" ] | 155 libfuzzer_options = [ "runs=500000" ] |
| 155 } | 156 } |
| OLD | NEW |