mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
61 lines
1.3 KiB
Python
61 lines
1.3 KiB
Python
# Copyright (c) 2014 Google Inc. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'no_pool',
|
|
'type': 'none',
|
|
'actions': [
|
|
{
|
|
'action_name': 'some_action',
|
|
'action': ['echo', 'hello'],
|
|
'inputs': ['foo.bar'],
|
|
'outputs': ['dummy'],
|
|
},
|
|
],
|
|
'rules': [
|
|
{
|
|
'rule_name': 'some_rule',
|
|
'extension': 'bar',
|
|
'action': ['echo', 'hello'],
|
|
'outputs': ['dummy'],
|
|
},
|
|
],
|
|
'sources': [
|
|
'foo.bar',
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'action_pool',
|
|
'type': 'none',
|
|
'actions': [
|
|
{
|
|
'action_name': 'some_action',
|
|
'action': ['echo', 'hello'],
|
|
'inputs': ['foo.bar'],
|
|
'outputs': ['dummy'],
|
|
'ninja_use_console': 1,
|
|
},
|
|
],
|
|
},
|
|
{
|
|
'target_name': 'rule_pool',
|
|
'type': 'none',
|
|
'rules': [
|
|
{
|
|
'rule_name': 'some_rule',
|
|
'extension': 'bar',
|
|
'action': ['echo', 'hello'],
|
|
'outputs': ['dummy'],
|
|
'ninja_use_console': 1,
|
|
},
|
|
],
|
|
'sources': [
|
|
'foo.bar',
|
|
],
|
|
},
|
|
],
|
|
}
|