OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'includes': [ |
| 6 '../base/base.isolate', |
| 7 ], |
5 'conditions': [ | 8 'conditions': [ |
6 ['OS=="android"', { | 9 ['OS=="android" or OS=="linux" or OS=="mac" or OS=="win"', { |
7 'variables': { | 10 'variables': { |
8 'isolate_dependency_untracked': [ | 11 'isolate_dependency_untracked': [ |
9 'test/data/', | 12 'test/data/', |
10 ], | 13 ], |
11 }, | 14 }, |
12 }], | 15 }], |
| 16 ['OS=="linux" or OS=="mac" or OS=="win"', { |
| 17 'variables': { |
| 18 'command': [ |
| 19 '<(PRODUCT_DIR)/media_unittests<(EXECUTABLE_SUFFIX)', |
| 20 ], |
| 21 'isolate_dependency_tracked': [ |
| 22 '<(PRODUCT_DIR)/media_unittests<(EXECUTABLE_SUFFIX)', |
| 23 ], |
| 24 }, |
| 25 }], |
| 26 # TODO(jmadill): should be automatic. http://crbug.com/418146 |
| 27 ['OS=="win"', { |
| 28 'variables': { |
| 29 'isolate_dependency_tracked': [ |
| 30 '<(PRODUCT_DIR)/ffmpegsumo.dll', |
| 31 ], |
| 32 }, |
| 33 }], |
| 34 ['OS=="mac"', { |
| 35 'variables': { |
| 36 'isolate_dependency_tracked': [ |
| 37 '<(PRODUCT_DIR)/ffmpegsumo.so', |
| 38 ], |
| 39 }, |
| 40 }], |
| 41 ['OS=="linux"', { |
| 42 'variables': { |
| 43 'isolate_dependency_tracked': [ |
| 44 '<(PRODUCT_DIR)/libffmpegsumo.so', |
| 45 ], |
| 46 }, |
| 47 }], |
13 ], | 48 ], |
14 } | 49 } |
OLD | NEW |