Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Side by Side Diff: testing/chromoting/chromoting_integration_tests.isolate

Issue 1841863002: Update monet. (Closed) Base URL: https://github.com/domokit/monet.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/chromoting/browser_tests_launcher.py ('k') | testing/chromoting/dependencies.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4 {
5 'conditions': [
6 ['OS=="linux"', {
7 'variables': {
8 'command': [
9 './browser_tests_launcher.py',
10 '--commands_file',
11 './browser_test_commands_linux.txt',
12 '--prod_dir',
13 '<(PRODUCT_DIR)',
14 '--cfg_file',
15 '../../remoting/tools/internal/test-account-host-config.json',
16 '--me2me_manifest_file',
17 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json',
18 '--it2me_manifest_file',
19 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json',
20 '--user_profile_dir',
21 '/tmp/chromoting_test_profile',
22 ],
23 'files': [
24 '../xvfb.py',
25 './browser_tests_launcher.py',
26 './browser_test_commands_linux.txt',
27 '<(PRODUCT_DIR)/libffmpegsumo.so',
28 '<(PRODUCT_DIR)/libosmesa.so',
29 '<(PRODUCT_DIR)/nacl_irt_x86_64.nexe',
30 '../../remoting/tools/internal/test-account-host-config.json',
31 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_desktop.json',
32 '<(PRODUCT_DIR)/remoting/com.google.chrome.remote_assistance.json',
33 '<(PRODUCT_DIR)/remoting-me2me-host.deb',
34 '<(PRODUCT_DIR)/nacl_helper',
35 '<(PRODUCT_DIR)/nacl_helper_bootstrap',
36 '<(PRODUCT_DIR)/pnacl/',
37 '../../remoting/internal/config/',
38 ],
39 },
40 }],
41 ['OS=="linux" and use_ozone==0', {
42 'variables': {
43 'files': [
44 '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)',
45 ],
46 },
47 }],
48 ['OS=="linux" or OS=="mac" or OS=="win"', {
49 'variables': {
50 'files': [
51 '../test_env.py',
52 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
53 '<(PRODUCT_DIR)/remoting/remoting.webapp/',
54 '<(PRODUCT_DIR)/remoting/remoting.webapp.v2/',
55 '<(PRODUCT_DIR)/remoting/browser_test_resources/',
56 '<(PRODUCT_DIR)/resources.pak',
57 '../../remoting/tools/internal/test_accounts.json',
58 ],
59 'read_only': 1,
60 },
61 }],
62 ['OS=="linux" or OS=="win"', {
63 'variables': {
64 'files': [
65 '<(PRODUCT_DIR)/chrome_100_percent.pak',
66 '<(PRODUCT_DIR)/locales/en-US.pak',
67 ],
68 },
69 }],
70 ['OS=="win"', {
71 'variables': {
72 'files': [
73 '<(PRODUCT_DIR)/chrome_elf.dll',
74 '<(PRODUCT_DIR)/ffmpegsumo.dll',
75 '<(PRODUCT_DIR)/libglesv2.dll',
76 ],
77 },
78 }],
79 ['OS=="mac"', {
80 'variables': {
81 'files': [
82 '<(PRODUCT_DIR)/<(mac_product_name).app/',
83 '<(PRODUCT_DIR)/exif.so',
84 '<(PRODUCT_DIR)/ffmpegsumo.so',
85 ],
86 },
87 }],
88 ['OS=="win"', {
89 'variables': {
90 'command': [
91 '../test_env.py',
92 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
93 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch:RemoteDesktopBr owserTest.MANUAL_Auth',
94 '--run-manual',
95 '--ui-test-action-timeout=100000',
96 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
97 '--extension-name=Chromoting',
98 '--accounts-file=../../remoting/tools/internal/test_accounts.json',
99 '--account-type=gmail',
100 ],
101 },
102 }],
103 ['OS=="mac"', {
104 'variables': {
105 'command': [
106 '../test_env.py',
107 '<(PRODUCT_DIR)/browser_tests<(EXECUTABLE_SUFFIX)',
108 '--gtest_filter=RemoteDesktopBrowserTest.MANUAL_Launch',
109 '--run-manual',
110 '--ui-test-action-timeout=100000',
111 '--webapp-unpacked=<(PRODUCT_DIR)/remoting/remoting.webapp.v2',
112 '--extension-name=Chromoting',
113 '--accounts-file=../../remoting/tools/internal/test_accounts.json',
114 '--account-type=gmail',
115 ],
116 },
117 }],
118 ['OS=="win" and kasko==1', {
119 'variables': {
120 'files': [
121 '<(PRODUCT_DIR)/kasko.dll',
122 ],
123 },
124 }],
125 ],
126 'includes': [
127 '../../base/base.isolate',
128 '../../gin/v8.isolate',
129 ],
130 }
OLDNEW
« no previous file with comments | « testing/chromoting/browser_tests_launcher.py ('k') | testing/chromoting/dependencies.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698