| 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 # Even if FFmpeg is enabled on Android we don't want these. | 10 # Even if FFmpeg is enabled on Android we don't want these. |
| 11 # TODO(watk): Refactor tests that could be made to run on Android. | 11 # TODO(watk): Refactor tests that could be made to run on Android. See |
| 12 # http://crbug.com/570762 |
| 12 if (media_use_ffmpeg && !is_android) { | 13 if (media_use_ffmpeg && !is_android) { |
| 13 sources = [ | 14 sources = [ |
| 14 "pipeline_integration_test_base.cc", | 15 "pipeline_integration_test_base.cc", |
| 15 "pipeline_integration_test_base.h", | 16 "pipeline_integration_test_base.h", |
| 16 ] | 17 ] |
| 17 | 18 |
| 18 deps = [ | 19 deps = [ |
| 19 "//base", | 20 "//base", |
| 20 "//media", | 21 "//media", |
| 21 "//media:test_support", | 22 "//media:test_support", |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 "//ui/gfx:test_support", | 106 "//ui/gfx:test_support", |
| 106 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
| 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 | 110 # header for pipeline_integration_test_base.h. This should be moved |
| 110 # into the .cc file to avoid the extra dependency here. | 111 # into the .cc file to avoid the extra dependency here. |
| 111 "//testing/gmock", | 112 "//testing/gmock", |
| 112 ] | 113 ] |
| 113 } | 114 } |
| 114 } | 115 } |
| OLD | NEW |