Home | History | Annotate | Download | only in dir2
      1 # Copyright (c) 2012 Google Inc. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 {
      5   'targets': [
      6     {
      7       'target_name': 'dir2_target',
      8       'type': 'none',
      9       'dependencies': [
     10         '../dir1/dir1.gyp:dir1_target',
     11       ],
     12       'actions': [
     13         {
     14           'inputs': [ ],
     15           'outputs': [ '<(PRODUCT_DIR)/file.txt' ],
     16           'action_name': 'Test action',
     17           'action': ['cp', 'file.txt', '${BUILT_PRODUCTS_DIR}/file.txt' ],
     18         },
     19       ],
     20     },
     21   ],
     22 }
     23