| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'conditions': [ | 5 'conditions': [ |
| 6 ['OS=="linux"', { | 6 ['OS=="linux"', { |
| 7 'variables': { | 7 'variables': { |
| 8 'command': [ | 8 'command': [ |
| 9 '../testing/xvfb.py', | 9 '../testing/xvfb.py', |
| 10 '<(PRODUCT_DIR)', | 10 '<(PRODUCT_DIR)', |
| 11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 12 '--test-launcher-bot-mode', |
| 12 ], | 13 ], |
| 13 'isolate_dependency_tracked': [ | 14 'isolate_dependency_tracked': [ |
| 14 '../testing/xvfb.py', | 15 '../testing/xvfb.py', |
| 15 '<(PRODUCT_DIR)/libclearkeycdm.so', | 16 '<(PRODUCT_DIR)/libclearkeycdm.so', |
| 16 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', | 17 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', |
| 17 '<(PRODUCT_DIR)/libffmpegsumo.so', | 18 '<(PRODUCT_DIR)/libffmpegsumo.so', |
| 18 '<(PRODUCT_DIR)/libosmesa.so', | 19 '<(PRODUCT_DIR)/libosmesa.so', |
| 19 '<(PRODUCT_DIR)/libppGoogleNaClPluginChrome.so', | 20 '<(PRODUCT_DIR)/libppGoogleNaClPluginChrome.so', |
| 20 '<(PRODUCT_DIR)/libppapi_tests.so', | 21 '<(PRODUCT_DIR)/libppapi_tests.so', |
| 21 '<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)', | 22 '<(PRODUCT_DIR)/nacl_helper<(EXECUTABLE_SUFFIX)', |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 '<(PRODUCT_DIR)/plugins/TestNetscapePlugIn.plugin/', | 122 '<(PRODUCT_DIR)/plugins/TestNetscapePlugIn.plugin/', |
| 122 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', | 123 '<(PRODUCT_DIR)/plugins/npapi_test_plugin.plugin/', |
| 123 ], | 124 ], |
| 124 }, | 125 }, |
| 125 }], | 126 }], |
| 126 ['OS=="mac" or OS=="win"', { | 127 ['OS=="mac" or OS=="win"', { |
| 127 'variables': { | 128 'variables': { |
| 128 'command': [ | 129 'command': [ |
| 129 '../testing/test_env.py', | 130 '../testing/test_env.py', |
| 130 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 131 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
| 132 '--test-launcher-bot-mode', |
| 131 ], | 133 ], |
| 132 }, | 134 }, |
| 133 }], | 135 }], |
| 134 ['OS=="win"', { | 136 ['OS=="win"', { |
| 135 'variables': { | 137 'variables': { |
| 136 'isolate_dependency_tracked': [ | 138 'isolate_dependency_tracked': [ |
| 137 '../native_client/build/build_nexe.py', | 139 '../native_client/build/build_nexe.py', |
| 138 '../third_party/cygwin/bin/bash.exe', | 140 '../third_party/cygwin/bin/bash.exe', |
| 139 '../third_party/cygwin/setup_mount.bat', | 141 '../third_party/cygwin/setup_mount.bat', |
| 140 '<(PRODUCT_DIR)/D3DCompiler_43.dll', | 142 '<(PRODUCT_DIR)/D3DCompiler_43.dll', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 155 ], | 157 ], |
| 156 'isolate_dependency_untracked': [ | 158 'isolate_dependency_untracked': [ |
| 157 '../third_party/npapi/npspy/extern/plugin/', | 159 '../third_party/npapi/npspy/extern/plugin/', |
| 158 '../third_party/psyco_win32/psyco/', | 160 '../third_party/psyco_win32/psyco/', |
| 159 '../third_party/python_26/', | 161 '../third_party/python_26/', |
| 160 ], | 162 ], |
| 161 }, | 163 }, |
| 162 }], | 164 }], |
| 163 ], | 165 ], |
| 164 } | 166 } |
| OLD | NEW |