| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 96 |
| 97 deps = [ | 97 deps = [ |
| 98 ":pipeline_integration_test_base", | 98 ":pipeline_integration_test_base", |
| 99 "//base", | 99 "//base", |
| 100 "//base/test:test_support", | 100 "//base/test:test_support", |
| 101 "//media", | 101 "//media", |
| 102 "//media:test_support", | 102 "//media:test_support", |
| 103 "//media/audio:test_support", | 103 "//media/audio:test_support", |
| 104 "//media/base:test_support", | 104 "//media/base:test_support", |
| 105 "//media/mojo/interfaces", | 105 "//media/mojo/interfaces", |
| 106 "//media/mojo/services", |
| 106 "//media/mojo/services:proxy", | 107 "//media/mojo/services:proxy", |
| 107 "//media/mojo/services:renderer_service", | |
| 108 "//services/shell/public/cpp:shell_test_support", | 108 "//services/shell/public/cpp:shell_test_support", |
| 109 "//testing/gtest", | 109 "//testing/gtest", |
| 110 "//ui/gfx:test_support", | 110 "//ui/gfx:test_support", |
| 111 "//ui/gfx/geometry", | 111 "//ui/gfx/geometry", |
| 112 | 112 |
| 113 # TODO(dalecurtis): Required since the gmock header is included in the | 113 # TODO(dalecurtis): Required since the gmock header is included in the |
| 114 # header for pipeline_integration_test_base.h. This should be moved | 114 # header for pipeline_integration_test_base.h. This should be moved |
| 115 # into the .cc file to avoid the extra dependency here. | 115 # into the .cc file to avoid the extra dependency here. |
| 116 "//testing/gmock", | 116 "//testing/gmock", |
| 117 ] | 117 ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 130 # TODO(dalecurtis): Required since the gmock header is included in the | 130 # TODO(dalecurtis): Required since the gmock header is included in the |
| 131 # header for pipeline_integration_test_base.h. This should be | 131 # header for pipeline_integration_test_base.h. This should be |
| 132 # moved into the .cc file to avoid the extra dependency here. | 132 # moved into the .cc file to avoid the extra dependency here. |
| 133 "//testing/gmock", | 133 "//testing/gmock", |
| 134 "//ui/gfx:test_support", | 134 "//ui/gfx:test_support", |
| 135 ] | 135 ] |
| 136 | 136 |
| 137 # 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. |
| 138 libfuzzer_options = [ "runs=500000" ] | 138 libfuzzer_options = [ "runs=500000" ] |
| 139 } | 139 } |
| OLD | NEW |