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