| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../../build/common.gypi', | 10 '../../build/common.gypi', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 'npn_scripting.cc', | 35 'npn_scripting.cc', |
| 36 'npn_scripting.h', | 36 'npn_scripting.h', |
| 37 'npp_impl.cc', | 37 'npp_impl.cc', |
| 38 'npp_impl.h', | 38 'npp_impl.h', |
| 39 'README', | 39 'README', |
| 40 'web_activex_container.cc', | 40 'web_activex_container.cc', |
| 41 'web_activex_container.h', | 41 'web_activex_container.h', |
| 42 'web_activex_site.cc', | 42 'web_activex_site.cc', |
| 43 'web_activex_site.h', | 43 'web_activex_site.h', |
| 44 ], | 44 ], |
| 45 # TODO(bradnelson): Add direct support for this kind of thing to gyp. | |
| 46 'msvs_settings': { | |
| 47 'VCLibrarianTool': { | |
| 48 'AdditionalDependencies': 'urlmon.lib', | |
| 49 }, | |
| 50 }, | |
| 51 'link_settings': { | 45 'link_settings': { |
| 52 'libraries': [ | 46 'libraries': [ |
| 53 '-lurlmon.lib', | 47 '-lurlmon.lib', |
| 54 ], | 48 ], |
| 55 }, | 49 }, |
| 56 }, | 50 }, |
| 57 ], | 51 ], |
| 58 }], | 52 }], |
| 59 ], | 53 ], |
| 60 } | 54 } |
| OLD | NEW |