Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: media/test/BUILD.gn

Issue 2435423002: Add media remoting unittests to media_unittests. (Closed)
Patch Set: Addressed comments. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/remoting/remoting_controller_unittest.cc ('k') | media/test/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("run_all_unittests") { 8 source_set("run_all_unittests") {
9 testonly = true 9 testonly = true
10 sources = [ 10 sources = [
11 "run_all_unittests.cc", 11 "run_all_unittests.cc",
12 ] 12 ]
13 13
14 deps = [ 14 deps = [
15 "//base", 15 "//base",
16 "//base/test:test_support", 16 "//base/test:test_support",
17 "//media", 17 "//media",
18 "//media/base:test_support", 18 "//media/base:test_support",
19 "//mojo/edk/system",
19 ] 20 ]
20 21
21 if (is_android) { 22 if (is_android) {
22 deps += [ "//ui/gl" ] 23 deps += [ "//ui/gl" ]
23 } 24 }
24 } 25 }
25 26
26 source_set("pipeline_integration_test_base") { 27 source_set("pipeline_integration_test_base") {
27 testonly = true 28 testonly = true
28 29
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 # TODO(dalecurtis): Required since the gmock header is included in the 147 # TODO(dalecurtis): Required since the gmock header is included in the
147 # header for pipeline_integration_test_base.h. This should be 148 # header for pipeline_integration_test_base.h. This should be
148 # moved into the .cc file to avoid the extra dependency here. 149 # moved into the .cc file to avoid the extra dependency here.
149 "//testing/gmock", 150 "//testing/gmock",
150 "//ui/gfx:test_support", 151 "//ui/gfx:test_support",
151 ] 152 ]
152 153
153 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error. 154 # This is done to avoid DEATH of ASan with "Thread limit exceeded" error.
154 libfuzzer_options = [ "runs=500000" ] 155 libfuzzer_options = [ "runs=500000" ]
155 } 156 }
OLDNEW
« no previous file with comments | « media/remoting/remoting_controller_unittest.cc ('k') | media/test/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698