OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 '../xvfb.py', | 9 './browser_tests_launcher.py', |
| 10 '-f', |
| 11 './browser_test_commands_linux.txt', |
| 12 '-p', |
10 '<(PRODUCT_DIR)', | 13 '<(PRODUCT_DIR)', |
11 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', | |
12 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', | |
13 '--run-manual', | |
14 '--ui-test-action-timeout=100000', | |
15 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | |
16 '--extension-name=Chromoting', | |
17 ], | 14 ], |
18 'files': [ | 15 'files': [ |
19 '../xvfb.py', | 16 '../xvfb.py', |
| 17 './browser_tests_launcher.py', |
| 18 './browser_test_commands_linux.txt', |
20 '../../remoting/tools/internal/test_accounts.json', | 19 '../../remoting/tools/internal/test_accounts.json', |
21 '<(PRODUCT_DIR)/libffmpegsumo.so', | 20 '<(PRODUCT_DIR)/libffmpegsumo.so', |
22 '<(PRODUCT_DIR)/libosmesa.so', | 21 '<(PRODUCT_DIR)/libosmesa.so', |
23 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', | 22 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
24 ], | 23 ], |
25 }, | 24 }, |
26 }], | 25 }], |
27 ['OS=="linux" and use_ozone==0', { | 26 ['OS=="linux" and use_ozone==0', { |
28 'variables': { | 27 'variables': { |
29 'files': [ | 28 'files': [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', | 60 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
62 '--extension-name=Chromoting', | 61 '--extension-name=Chromoting', |
63 ], | 62 ], |
64 }, | 63 }, |
65 }], | 64 }], |
66 ], | 65 ], |
67 'includes': [ | 66 'includes': [ |
68 '../../base/base.isolate', | 67 '../../base/base.isolate', |
69 ], | 68 ], |
70 } | 69 } |
OLD | NEW |