| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'bsdiff', | 8 'target_name': 'bsdiff', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../bspatch/bspatch.gyp:bspatch', | 11 '../bspatch/bspatch.gyp:bspatch', |
| 12 ], | 12 ], |
| 13 'link_settings': { | 13 'link_settings': { |
| 14 'libraries': [ | 14 'libraries': [ |
| 15 '-lWs2_32.lib', | 15 '-lWs2_32.lib', |
| 16 ], | 16 ], |
| 17 }, | 17 }, |
| 18 'sources': [ | 18 'sources': [ |
| 19 'mbsdiff.cc', | 19 'mbsdiff.cc', |
| 20 ], | 20 ], |
| 21 }, | 21 }, |
| 22 ], | 22 ], |
| 23 } | 23 } |
| 24 | |
| 25 # Local Variables: | |
| 26 # tab-width:2 | |
| 27 # indent-tabs-mode:nil | |
| 28 # End: | |
| 29 # vim: set expandtab tabstop=2 shiftwidth=2: | |
| OLD | NEW |