mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
30 lines
494 B
Plaintext
30 lines
494 B
Plaintext
|
{
|
||
|
'targets': [
|
||
|
{
|
||
|
'target_name': 'foo',
|
||
|
'type': 'none',
|
||
|
'copies': [
|
||
|
{
|
||
|
'destination': '<(PRODUCT_DIR)/dest',
|
||
|
'files': [
|
||
|
'read-only-file',
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
}, # target: foo
|
||
|
|
||
|
{
|
||
|
'target_name': 'bar',
|
||
|
'type': 'none',
|
||
|
'copies': [
|
||
|
{
|
||
|
'destination': '<(PRODUCT_DIR)/dest',
|
||
|
'files': [
|
||
|
'subdir/',
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
}, # target: bar
|
||
|
],
|
||
|
}
|