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

Side by Side Diff: swarm_client/example/hello_world.isolate

Issue 69143004: Delete swarm_client. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « swarm_client/codereview.settings ('k') | swarm_client/example/hello_world.py » ('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) 2012 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 'variables': {
6 'isolate_dependency_tracked': [
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=="win"', {
31 'variables': {
32 'command': [
33 'python',
34 'hello_world.py',
35 'Windows',
36 ],
37 },
38 }],
39 ],
40 }
OLDNEW
« no previous file with comments | « swarm_client/codereview.settings ('k') | swarm_client/example/hello_world.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698