1 # Copyright 2014 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': 'refs_to_shard_external_lib', 9 'type': 'static_library', 10 'dependencies': [ 11 # Make sure references in other files are updated correctly. 12 'shard.gyp:shard', 13 ], 14 'sources': [ 15 'hello.cc', 16 ], 17 }, 18 { 19 'target_name': 'refs_to_shard_external_exe', 20 'type': 'executable', 21 'dependencies': [ 22 # Make sure references in other files are updated correctly. 23 'shard.gyp:shard', 24 ], 25 'sources': [ 26 'hello.cc', 27 ], 28 }, 29 { 30 'target_name': 'refs_to_shard_external_dll', 31 'type': 'shared_library', 32 'dependencies': [ 33 # Make sure references in other files are updated correctly. 34 'shard.gyp:shard', 35 ], 36 'sources': [ 37 'hello.cc', 38 ], 39 }, 40 ] 41 } 42