mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
16 lines
340 B
Python
16 lines
340 B
Python
{
|
|
'conditions': [
|
|
['test_var==0', {
|
|
'defines': ['FOO="first_if"'],
|
|
}, 'test_var==1', {
|
|
'defines': ['FOO="first_else_if"'],
|
|
}, 'test_var==2', {
|
|
'defines': ['FOO="second_else_if"'],
|
|
}, 'test_var==3', {
|
|
'defines': ['FOO="third_else_if"'],
|
|
}, {
|
|
'defines': ['FOO="last_else"'],
|
|
}],
|
|
],
|
|
}
|