Index: testing/chromoting/chromoting_integration_tests.isolate |
diff --git a/testing/chromoting/chromoting_integration_tests.isolate b/testing/chromoting/chromoting_integration_tests.isolate |
new file mode 100644 |
index 0000000000000000000000000000000000000000..77f1ac41c8a4668a6e7bceabfa2876b30804e334 |
--- /dev/null |
+++ b/testing/chromoting/chromoting_integration_tests.isolate |
@@ -0,0 +1,59 @@ |
+# Copyright (c) 2014 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+{ |
+ 'conditions': [ |
+ ['OS=="linux"', { |
+ 'variables': { |
+ 'command': [ |
anandc1
2014/08/29 21:11:29
Has this succeeded when you run this on a Linux ma
M-A Ruel
2014/08/29 21:14:23
All the Chromium build slaves have the sandbox set
Lei Lei
2014/08/29 22:19:44
Yes, I ran it on both my dev box and swarming linu
|
+ '../xvfb.py', |
+ '<(PRODUCT_DIR)', |
+ '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
+ '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', |
+ '--run-manual', |
+ '--ui-test-action-timeout=100000', |
+ '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
+ '--extension-name=Chromoting', |
anandc1
2014/08/29 21:11:28
For Chromium builds, this extension name should wo
Lei Lei
2014/08/29 22:19:45
We will build extension by ourselves, so the name
|
+ '--enable-pixel-output-in-tests', |
anandc1
2014/08/29 21:11:28
This is not essential, so may be removed.
Lei Lei
2014/08/29 22:19:44
Done.
|
+ ], |
+ 'isolate_dependency_tracked': [ |
+ '<(PRODUCT_DIR)/libffmpegsumo.so', |
+ '<(PRODUCT_DIR)/libosmesa.so', |
+ '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe', |
+ ], |
+ }, |
+ }], |
+ ['OS=="linux" or OS=="mac" or OS=="win"', { |
+ 'variables': { |
+ 'isolate_dependency_tracked': [ |
+ '../xvfb.py', |
M-A Ruel
2014/08/29 20:57:16
Move it to line 20
Lei Lei
2014/08/29 22:19:45
Done.
|
+ '../test_env.py', |
+ '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
M-A Ruel
2014/08/29 20:57:16
Move it to line 20
Lei Lei
2014/08/29 22:19:45
Done.
|
+ '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
+ '<(PRODUCT_DIR)/chrome_100_percent.pak', |
+ '<(PRODUCT_DIR)/resources.pak', |
+ '<(PRODUCT_DIR)/locales/', |
+ '<(PRODUCT_DIR)/remoting/remoting.webapp/', |
+ ], |
+ 'read_only': 1, |
+ }, |
+ }], |
+ ['OS=="mac" or OS=="win"', { |
+ 'variables': { |
+ 'command': [ |
+ '../testing/test_env.py', |
+ '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)', |
+ '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch', |
+ '--run-manual', |
+ '--ui-test-action-timeout=100000', |
+ '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp', |
+ '--extension-name=Chromoting', |
+ '--enable-pixel-output-in-tests' |
+ ], |
+ }, |
+ }], |
+ ], |
+ 'includes': [ |
+ '../../base/base.isolate', |
+ ], |
+} |