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 'includes': [ | 5 'includes': [ |
6 'chrome.isolate', | 6 'chrome.isolate', |
7 ], | 7 ], |
8 'conditions': [ | 8 'conditions': [ |
9 ['OS=="linux"', { | 9 ['OS=="linux"', { |
10 'variables': { | 10 'variables': { |
11 'command': [ | 11 'command': [ |
12 '../testing/xvfb.py', | 12 '../testing/xvfb.py', |
13 '<(PRODUCT_DIR)', | 13 '<(PRODUCT_DIR)', |
14 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | 14 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
15 '--test-launcher-bot-mode', | 15 '--test-launcher-bot-mode', |
16 ], | 16 ], |
17 'isolate_dependency_tracked': [ | 17 'isolate_dependency_tracked': [ |
18 '../testing/xvfb.py', | 18 '../testing/xvfb.py', |
19 '<(PRODUCT_DIR)/libclearkeycdm.so', | 19 '<(PRODUCT_DIR)/libclearkeycdm.so', |
20 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', | 20 '<(PRODUCT_DIR)/libclearkeycdmadapter.so', |
21 '<(PRODUCT_DIR)/libppapi_tests.so', | 21 '<(PRODUCT_DIR)/libppapi_tests.so', |
22 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', | 22 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
23 ], | 23 ], |
24 'isolate_dependency_untracked': [ | |
25 '<(PRODUCT_DIR)/chromevox_test_data/', | |
26 ], | |
27 }, | 24 }, |
28 }], | 25 }], |
29 ['OS=="linux" or OS=="mac"', { | 26 ['OS=="linux" or OS=="mac"', { |
30 'variables': { | 27 'variables': { |
31 'isolate_dependency_tracked': [ | 28 'isolate_dependency_tracked': [ |
32 'browser/nacl_host/test/debug_stub_browser_tests.py', | 29 'browser/nacl_host/test/debug_stub_browser_tests.py', |
33 'browser/nacl_host/test/gdb_rsp.py', | 30 'browser/nacl_host/test/gdb_rsp.py', |
34 ], | 31 ], |
35 }, | 32 }, |
36 }], | 33 }], |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 '<(PRODUCT_DIR)/ppapi_tests.dll', | 131 '<(PRODUCT_DIR)/ppapi_tests.dll', |
135 '<(PRODUCT_DIR)/security_tests.dll', | 132 '<(PRODUCT_DIR)/security_tests.dll', |
136 'tools/build/repack_locales.py', | 133 'tools/build/repack_locales.py', |
137 ], | 134 ], |
138 'isolate_dependency_untracked': [ | 135 'isolate_dependency_untracked': [ |
139 '../third_party/npapi/npspy/extern/plugin/', | 136 '../third_party/npapi/npspy/extern/plugin/', |
140 '../third_party/psyco_win32/psyco/', | 137 '../third_party/psyco_win32/psyco/', |
141 ], | 138 ], |
142 }, | 139 }, |
143 }], | 140 }], |
| 141 ['chromeos==1', { |
| 142 'variables': { |
| 143 'isolate_dependency_untracked': [ |
| 144 '<(PRODUCT_DIR)/chromevox_test_data/', |
| 145 ], |
| 146 }, |
| 147 }], |
144 ], | 148 ], |
145 } | 149 } |
OLD | NEW |