1 # Copyright (c) 2009 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 { 6 'targets': [ 7 { 8 'target_name': 'pull_in_subdir', 9 'type': 'none', 10 'dependencies': [ 11 'subdir/subdir.gyp:*', 12 ], 13 }, 14 { 15 'target_name': 'copies1', 16 'type': 'none', 17 'copies': [ 18 { 19 'destination': 'copies-out', 20 'files': [ 21 'file1', 22 ], 23 }, 24 ], 25 }, 26 { 27 'target_name': 'copies2', 28 'type': 'none', 29 'copies': [ 30 { 31 'destination': '<(PRODUCT_DIR)/copies-out', 32 'files': [ 33 'file2', 34 ], 35 }, 36 ], 37 }, 38 # Verify that a null 'files' list doesn't gag the generators. 39 { 40 'target_name': 'copies_null', 41 'type': 'none', 42 'copies': [ 43 { 44 'destination': '<(PRODUCT_DIR)/copies-null', 45 'files': [], 46 }, 47 ], 48 }, 49 ], 50 } 51