| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | |
| 2 # for details. All rights reserved. Use of this source code is governed by a | |
| 3 # BSD-style license that can be found in the LICENSE.md file. | |
| 4 | |
| 5 { | |
| 6 'target_defaults': { | |
| 7 'include_dirs': [ | |
| 8 '../../', | |
| 9 ], | |
| 10 }, | |
| 11 'targets': [ | |
| 12 { | |
| 13 'target_name': 'myapi_test', | |
| 14 'type': 'executable', | |
| 15 'dependencies': [ | |
| 16 '../../src/vm/vm.gyp:fletch_vm_library', | |
| 17 ], | |
| 18 'sources': [ | |
| 19 'myapi_client.cc', | |
| 20 'generated/myapi.h', | |
| 21 'generated/cc/myapi_service.cc', | |
| 22 'generated/cc/myapi_service.h', | |
| 23 'generated/cc/struct.cc', | |
| 24 'generated/cc/struct.h', | |
| 25 'generated/cc/unicode.cc', | |
| 26 'generated/cc/unicode.h', | |
| 27 ], | |
| 28 }, | |
| 29 ], | |
| 30 } | |
| OLD | NEW |