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 | 6 |
7 source_set("pipeline_integration_test_base") { | 7 source_set("pipeline_integration_test_base") { |
8 testonly = true | 8 testonly = true |
9 | 9 |
10 if (media_use_ffmpeg) { | 10 if (media_use_ffmpeg) { |
(...skipping 25 matching lines...) Expand all Loading... |
36 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 36 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
37 | 37 |
38 deps = [ | 38 deps = [ |
39 ":pipeline_integration_test_base", | 39 ":pipeline_integration_test_base", |
40 "//base", | 40 "//base", |
41 "//media", | 41 "//media", |
42 "//media:test_support", | 42 "//media:test_support", |
43 "//media/audio:test_support", | 43 "//media/audio:test_support", |
44 "//media/base:test_support", | 44 "//media/base:test_support", |
45 "//testing/gtest", | 45 "//testing/gtest", |
| 46 "//url", |
46 | 47 |
47 # TODO(dalecurtis): Required since the gmock header is included in the | 48 # TODO(dalecurtis): Required since the gmock header is included in the |
48 # header for pipeline_integration_test_base.h. This should be moved into | 49 # header for pipeline_integration_test_base.h. This should be moved into |
49 # the .cc file to avoid the extra dependency here. | 50 # the .cc file to avoid the extra dependency here. |
50 "//testing/gmock", | 51 "//testing/gmock", |
51 ] | 52 ] |
52 } | 53 } |
53 } | 54 } |
54 | 55 |
55 source_set("pipeline_integration_perftests") { | 56 source_set("pipeline_integration_perftests") { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "//ui/gfx:test_support", | 107 "//ui/gfx:test_support", |
107 | 108 |
108 # TODO(dalecurtis): Required since the gmock header is included in the | 109 # TODO(dalecurtis): Required since the gmock header is included in the |
109 # header for pipeline_integration_test_base.h. This should be moved int
o | 110 # header for pipeline_integration_test_base.h. This should be moved int
o |
110 # the .cc file to avoid the extra dependency here. | 111 # the .cc file to avoid the extra dependency here. |
111 "//testing/gmock", | 112 "//testing/gmock", |
112 ] | 113 ] |
113 } | 114 } |
114 } | 115 } |
115 } | 116 } |
OLD | NEW |