Chromium Code Reviews| 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 | |
|
Ken Russell (switch to Gerrit)
2014/09/26 21:03:42
Not sure this is automatically included yet. Per c
| |
| 27 ['OS=="win"', { | |
| 28 'variables': { | |
| 29 'isolate_dependency_tracked': [ | |
| 30 '<(PRODUCT_DIR)/ffmpegsumo.dll', | |
| 31 ], | |
| 32 }, | |
| 33 }], | |
| 13 ], | 34 ], |
| 14 } | 35 } |
| OLD | NEW |