blob: cda46c839badec158504023ea7e70cf37a7cee04 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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}