Chromium Code Reviews| Index: media/media_unittests.isolate |
| diff --git a/media/media_unittests.isolate b/media/media_unittests.isolate |
| index 0aa38c0eb6010194fc310c502892e2ebd23d44b1..8b493df2a4aa5980ddbf4e98720439aceb39405f 100644 |
| --- a/media/media_unittests.isolate |
| +++ b/media/media_unittests.isolate |
| @@ -2,13 +2,34 @@ |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| { |
| + 'includes': [ |
| + '../base/base.isolate', |
| + ], |
| 'conditions': [ |
| - ['OS=="android"', { |
| + ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
| 'variables': { |
| 'isolate_dependency_untracked': [ |
| 'test/data/', |
| ], |
| }, |
| }], |
| + ['OS=="linux" or OS=="mac" or OS=="win"', { |
| + 'variables': { |
| + 'command': [ |
| + '<(PRODUCT_DIR)/media_unittests<(EXECUTABLE_SUFFIX)', |
| + ], |
| + 'isolate_dependency_tracked': [ |
| + '<(PRODUCT_DIR)/media_unittests<(EXECUTABLE_SUFFIX)', |
| + ], |
| + }, |
| + }], |
| + # TODO(jmadill): find why ffmpeg dll dependency is untracked |
| + ['OS=="win"', { |
| + 'variables': { |
| + 'isolate_dependency_untracked': [ |
| + '<(PRODUCT_DIR)/ffmpegsumo.dll', |
|
csharp
2014/09/26 15:01:16
is ffmpedsumo.dll required to run the test? If so,
|
| + ], |
| + }, |
| + }], |
| ], |
| } |