Home | History | Annotate | Download | only in win-tool
      1 {
      2   'targets': [
      3     {
      4       'target_name': 'foo',
      5       'type': 'none',
      6       'copies': [
      7         {
      8           'destination': '<(PRODUCT_DIR)/dest',
      9           'files': [
     10             'read-only-file',
     11           ],
     12         },
     13       ],
     14     },  # target: foo
     15 
     16     {
     17       'target_name': 'bar',
     18       'type': 'none',
     19       'copies': [
     20         {
     21           'destination': '<(PRODUCT_DIR)/dest',
     22           'files': [
     23             'subdir/',
     24           ],
     25         },
     26       ],
     27     },  # target: bar
     28   ],
     29 }
     30