/external/chromium_org/build/android/pylib/utils/ |
xvfb.py | 17 class Xvfb(object): 18 """Class to start and stop Xvfb if relevant. Nop if not Linux.""" 24 """Start Xvfb and set an appropriate DISPLAY environment. Linux only. 30 proc = subprocess.Popen(['Xvfb', ':9', '-screen', '0', '1024x768x24', 35 raise Exception('Could not start Xvfb') 46 raise Exception('Could not confirm Xvfb happiness') 49 """Stop Xvfb if needed. Linux only."""
|
/external/chromium_org/remoting/host/ |
curtain_mode_linux.cc | 24 // Returns true if the host is running under an Xvfb session. 35 // Either the session is running on Xvfb (i.e. always curtained), or it is 39 LOG(ERROR) << "Curtain-mode is not supported when running on non-Xvfb " 47 // Try to identify an Xvfb session. There's no way to query what X server we 48 // are running under, so we check for the Xvfb input devices. 53 // If XInput is not available, assume it is not an Xvfb session. 67 if (strcmp(device_info->name, "Xvfb mouse") == 0) { 71 LOG(INFO) << "Non Xvfb mouse found: " << device_info->name; 74 if (strcmp(device_info->name, "Xvfb keyboard") == 0) { 79 LOG(INFO) << "Non Xvfb keyboard found: " << device_info->name [all...] |
desktop_resizer_linux.cc | 16 // we only support resize-to-client for Xvfb-based servers that can match the 171 // non-Xvfb servers. 221 // non-Xvfb servers.
|
/external/chromium_org/testing/ |
xvfb.py | 6 """Runs the test with xvfb on linux. Runs the test normally on other platforms. 33 xvfb_path = os.path.join(server_dir, 'Xvfb.' + platform.architecture()[0]) 35 xvfb_path = os.path.join(server_dir, 'Xvfb') 38 'No Xvfb found in designated server path: %s' % server_dir) 50 xvfb_path: Path to Xvfb. 63 """Waits for xvfb to be fully initialized by using xdisplaycheck.""" 76 'Xvfb failed to load properly while trying to run %s' % xdisplaycheck) 82 """Runs an executable within a xvfb buffer on linux or normally on other 85 Requires that both xvfb and icewm are installed on linux. 96 xvfb = 'Xvfb [all...] |
/external/chromium_org/remoting/host/installer/linux/debian/ |
control | 15 Depends: xvfb-randr | xvfb, gksu, xbase-clients, python (>= 2.6), python-psutil, ${shlibs:Depends}, ${misc:Depends}, ${python:Depends} 16 Recommends: xvfb-randr
|
/external/chromium_org/base/ |
base_unittests.isolate | 17 '../testing/xvfb.py', 23 '../testing/xvfb.py',
|
/external/chromium_org/chrome/ |
sync_integration_tests.isolate | 9 '../testing/xvfb.py', 16 '../testing/xvfb.py',
|
interactive_ui_tests.isolate | 9 '../testing/xvfb.py', 16 '../testing/xvfb.py',
|
unit_tests.isolate | 45 '../testing/xvfb.py', 51 '../testing/xvfb.py',
|
browser_tests.isolate | 9 '../testing/xvfb.py', 16 '../testing/xvfb.py',
|
/external/chromium_org/net/ |
net_unittests.isolate | 22 '../testing/xvfb.py', 28 '../testing/xvfb.py',
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/config/ |
ports.py | 66 "chromium-xvfb": ChromiumXVFBPort, 115 port_flag_name = "chromium-xvfb" 118 return ["xvfb-run"] + super(ChromiumXVFBPort, self).run_webkit_tests_command()
|
ports_unittest.py | 40 self.assertEqual(ChromiumXVFBPort().run_webkit_tests_command(), ['xvfb-run'] + DeprecatedPort().script_shell_command('new-run-webkit-tests') + ['--chromium', '--skip-failing-tests'])
|
/external/chromium_org/content/ |
content_browsertests.isolate | 27 '../testing/xvfb.py', 33 '../testing/xvfb.py',
|
content_unittests.isolate | 25 '../testing/xvfb.py',
|
/external/chromium_org/native_client_sdk/src/build_tools/ |
buildbot_run.py | 63 # Run all of test_sdk.py under xvfb-run; it's startup time leaves something 65 cmd.extend(['xvfb-run', '--auto-servernum'])
|
/external/chromium_org/tools/code_coverage/ |
coverage_posix.py | 44 --xvfb=True: By default we use Xvfb to make sure DISPLAY is valid 45 (Linux only). if set to False, do not use Xvfb. TODO(jrg): convert [all...] |
/external/chromium_org/remoting/tools/ |
me2me_virtual_host.py | 311 # Xvfb-randr, but that's no longer the case. Fix this once we have 312 # a Xvfb-randr package that installs somewhere sensible. 313 xvfb = "/usr/bin/Xvfb-randr" 314 if not os.path.exists(xvfb): 315 xvfb = locate_executable("Xvfb-randr") 318 xvfb = "Xvfb" 329 logging.info("Starting %s on display :%d" % (xvfb, display) [all...] |
/external/chromium_org/tools/xdisplaycheck/ |
xdisplaycheck.cc | 97 // Ask for the list of devices. This can cause some Xvfb to crash.
|
/external/chromium_org/chrome/test/nacl_test_injection/ |
buildbot_chrome_nacl_stage.py | 147 # xvfb-run has a 2-second overhead per invocation, so it is cheaper to wrap 149 scons = ['xvfb-run', '--auto-servernum', python, 'scons.py']
|
/external/chromium_org/build/ |
install-build-deps-android.sh | 47 sudo apt-get -y install lighttpd python-pexpect xvfb x11-utils
|
/external/chromium_org/chrome/test/chromedriver/test/ |
run_all_tests.py | 58 cmd.insert(0, 'xvfb-run')
|
/external/chromium_org/chrome/test/chromedriver/ |
keycode_text_conversion_x.cc | 196 "an X display is required for keycode conversions, consider using Xvfb";
|
/external/chromium_org/chrome/test/functional/media/ |
media_jerky.py | 166 # Xvfb on the bots is restricted to 1024x768 at present. Ensure we're using
|
/external/chromium_org/chrome/test/webdriver/test/ |
chromedriver_tests.py | 509 # crbug.com/109698: when running in xvfb, 2 extra mouse moves are received. [all...] |