blob: 7827d3ca1c5f72e4fe45c2ebcefda61be0406478 [file] [log] [blame]
# Copyright (c) 2012 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.
{
'variables': {
'isolate_dependency_tracked': [
'hello_world.py',
],
},
#
'conditions': [
['OS=="linux"', {
'variables': {
'command': [
'python',
'hello_world.py',
'Linux',
],
},
}],
['OS=="mac"', {
'variables': {
'command': [
'python',
'hello_world.py',
'OSX',
],
},
}],
['OS=="win"', {
'variables': {
'command': [
'python',
'hello_world.py',
'Windows',
],
},
}],
],
}