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 23 matching lines...) Expand all Loading... | |
34 | 34 |
35 if (media_use_ffmpeg && !is_android) { | 35 if (media_use_ffmpeg && !is_android) { |
36 sources = [ | 36 sources = [ |
37 "pipeline_integration_test.cc", | 37 "pipeline_integration_test.cc", |
38 ] | 38 ] |
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", | |
45 "//media", | |
46 "//media:test_support", | |
47 "//media/audio:test_support", | |
48 "//media/base:test_support", | |
49 "//media/mojo/interfaces", | |
alokp
2016/05/18 20:53:24
Xiaohan: AFAICT pipeline_integration_tests does no
xhwang
2016/05/19 16:36:23
This target doesn't define MOJO_RENDERER and doesn
| |
50 "//media/mojo/services:proxy", | |
51 "//services/shell/public/cpp:shell_test_support", | |
52 "//testing/gtest", | |
53 "//url", | 44 "//url", |
54 | 45 |
55 # TODO(dalecurtis): Required since the gmock header is included in the | 46 # TODO(dalecurtis): Required since the gmock header is included in the |
56 # header for pipeline_integration_test_base.h. This should be moved into | 47 # header for pipeline_integration_test_base.h. This should be moved into |
57 # the .cc file to avoid the extra dependency here. | 48 # the .cc file to avoid the extra dependency here. |
58 "//testing/gmock", | 49 "//testing/gmock", |
59 ] | 50 ] |
60 } | 51 } |
61 } | 52 } |
62 | 53 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
130 # TODO(dalecurtis): Required since the gmock header is included in the | 121 # TODO(dalecurtis): Required since the gmock header is included in the |
131 # header for pipeline_integration_test_base.h. This should be | 122 # header for pipeline_integration_test_base.h. This should be |
132 # moved into the .cc file to avoid the extra dependency here. | 123 # moved into the .cc file to avoid the extra dependency here. |
133 "//testing/gmock", | 124 "//testing/gmock", |
134 "//ui/gfx:test_support", | 125 "//ui/gfx:test_support", |
135 ] | 126 ] |
136 | 127 |
137 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 128 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
138 libfuzzer_options = [ "runs=500000" ] | 129 libfuzzer_options = [ "runs=500000" ] |
139 } | 130 } |
OLD | NEW |