| 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 30 matching lines...) Expand all Loading... |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 43 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 ":pipeline_integration_test_base", | 46 ":pipeline_integration_test_base", |
| 47 "//base", | 47 "//base", |
| 48 "//media:test_support", | 48 "//media:test_support", |
| 49 "//media/base:test_support", | 49 "//media/base:test_support", |
| 50 "//media/mojo/clients", | 50 "//media/mojo/clients", |
| 51 "//services/shell/public/cpp:service_test_support", | 51 "//services/service_manager/public/cpp:service_test_support", |
| 52 "//url", | 52 "//url", |
| 53 | 53 |
| 54 # TODO(dalecurtis): Required since the gmock header is included in the | 54 # TODO(dalecurtis): Required since the gmock header is included in the |
| 55 # header for pipeline_integration_test_base.h. This should be moved into | 55 # header for pipeline_integration_test_base.h. This should be moved into |
| 56 # the .cc file to avoid the extra dependency here. | 56 # the .cc file to avoid the extra dependency here. |
| 57 "//testing/gmock", | 57 "//testing/gmock", |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 } | 60 } |
| 61 | 61 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 deps = [ | 96 deps = [ |
| 97 ":pipeline_integration_test_base", | 97 ":pipeline_integration_test_base", |
| 98 "//base", | 98 "//base", |
| 99 "//base/test:test_support", | 99 "//base/test:test_support", |
| 100 "//media:test_support", | 100 "//media:test_support", |
| 101 "//media/audio:test_support", | 101 "//media/audio:test_support", |
| 102 "//media/base:test_support", | 102 "//media/base:test_support", |
| 103 "//media/mojo/clients", | 103 "//media/mojo/clients", |
| 104 "//media/mojo/interfaces", | 104 "//media/mojo/interfaces", |
| 105 "//media/mojo/services", | 105 "//media/mojo/services", |
| 106 "//services/shell/public/cpp:service_test_support", | 106 "//services/service_manager/public/cpp:service_test_support", |
| 107 "//testing/gtest", | 107 "//testing/gtest", |
| 108 "//ui/gfx:test_support", | 108 "//ui/gfx:test_support", |
| 109 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
| 110 | 110 |
| 111 # TODO(dalecurtis): Required since the gmock header is included in the | 111 # TODO(dalecurtis): Required since the gmock header is included in the |
| 112 # header for pipeline_integration_test_base.h. This should be moved | 112 # header for pipeline_integration_test_base.h. This should be moved |
| 113 # into the .cc file to avoid the extra dependency here. | 113 # into the .cc file to avoid the extra dependency here. |
| 114 "//testing/gmock", | 114 "//testing/gmock", |
| 115 ] | 115 ] |
| 116 } | 116 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 128 # TODO(dalecurtis): Required since the gmock header is included in the | 128 # TODO(dalecurtis): Required since the gmock header is included in the |
| 129 # header for pipeline_integration_test_base.h. This should be | 129 # header for pipeline_integration_test_base.h. This should be |
| 130 # moved into the .cc file to avoid the extra dependency here. | 130 # moved into the .cc file to avoid the extra dependency here. |
| 131 "//testing/gmock", | 131 "//testing/gmock", |
| 132 "//ui/gfx:test_support", | 132 "//ui/gfx:test_support", |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. | 135 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. |
| 136 libfuzzer_options = [ "runs=500000" ] | 136 libfuzzer_options = [ "runs=500000" ] |
| 137 } | 137 } |
| OLD | NEW |