Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / tools / swarming_client / example / payload / hello_world.isolate
1 # Copyright 2012 The Swarming Authors. All rights reserved.
2 # Use of this source code is governed under the Apache License, Version 2.0 that
3 # can be found in the LICENSE file.
4 {
5   'variables': {
6     'files': [
7       'hello_world.py',
8     ],
9   },
10   #
11   'conditions': [
12     ['OS=="Linux"', {
13       'variables': {
14         'command': [
15           'python',
16           'hello_world.py',
17           'Linux',
18         ],
19       },
20     }],
21     ['OS=="Mac"', {
22       'variables': {
23         'command': [
24           'python',
25           'hello_world.py',
26           'OSX',
27         ],
28       },
29     }],
30     ['OS=="Yours"', {
31       'variables': {
32         'command': [
33           'python',
34           'hello_world.py',
35           'your OS is the best',
36         ],
37       },
38     }],
39     ['OS=="Windows"', {
40       'variables': {
41         'command': [
42           'python',
43           'hello_world.py',
44           'Windows',
45         ],
46       },
47     }],
48   ],
49 }