| 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("pipeline_integration_test_base") { | 8 source_set("pipeline_integration_test_base") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 40 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 ":pipeline_integration_test_base", | 43 ":pipeline_integration_test_base", |
| 44 "//base", | 44 "//base", |
| 45 "//media", | 45 "//media", |
| 46 "//media:test_support", | 46 "//media:test_support", |
| 47 "//media/audio:test_support", | 47 "//media/audio:test_support", |
| 48 "//media/base:test_support", | 48 "//media/base:test_support", |
| 49 "//media/mojo/interfaces", |
| 50 "//media/mojo/services:proxy", |
| 51 "//services/shell/public/cpp:shell_test_support", |
| 49 "//testing/gtest", | 52 "//testing/gtest", |
| 50 "//url", | 53 "//url", |
| 51 | 54 |
| 52 # TODO(dalecurtis): Required since the gmock header is included in the | 55 # TODO(dalecurtis): Required since the gmock header is included in the |
| 53 # header for pipeline_integration_test_base.h. This should be moved into | 56 # header for pipeline_integration_test_base.h. This should be moved into |
| 54 # the .cc file to avoid the extra dependency here. | 57 # the .cc file to avoid the extra dependency here. |
| 55 "//testing/gmock", | 58 "//testing/gmock", |
| 56 ] | 59 ] |
| 57 } | 60 } |
| 58 } | 61 } |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 # TODO(dalecurtis): Required since the gmock header is included in the | 130 # TODO(dalecurtis): Required since the gmock header is included in the |
| 128 # header for pipeline_integration_test_base.h. This should be | 131 # header for pipeline_integration_test_base.h. This should be |
| 129 # moved into the .cc file to avoid the extra dependency here. | 132 # moved into the .cc file to avoid the extra dependency here. |
| 130 "//testing/gmock", | 133 "//testing/gmock", |
| 131 "//ui/gfx:test_support", | 134 "//ui/gfx:test_support", |
| 132 ] | 135 ] |
| 133 | 136 |
| 134 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 137 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
| 135 libfuzzer_options = [ "runs=500000" ] | 138 libfuzzer_options = [ "runs=500000" ] |
| 136 } | 139 } |
| OLD | NEW |