| 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', |
| 11 ], | 11 ], |
| 12 'targets': [ | 12 'targets': [ |
| 13 { | 13 { |
| 14 'target_name': 'activex_shim_dll', | 14 'target_name': 'activex_shim_dll', |
| 15 'type': 'shared_library', | 15 'type': 'shared_library', |
| 16 'dependencies': [ | 16 'dependencies': [ |
| 17 '../../base/base.gyp:base', |
| 17 '../../third_party/npapi/npapi.gyp:npapi', | 18 '../../third_party/npapi/npapi.gyp:npapi', |
| 18 '../activex_shim/activex_shim.gyp:activex_shim', | 19 '../activex_shim/activex_shim.gyp:activex_shim', |
| 19 ], | 20 ], |
| 20 'sources': [ | 21 'sources': [ |
| 21 'activex_shim_dll.cc', | 22 'activex_shim_dll.cc', |
| 22 'activex_shim_dll.def', | 23 'activex_shim_dll.def', |
| 23 'activex_shim_dll.rc', | 24 'activex_shim_dll.rc', |
| 24 'resource.h', | 25 'resource.h', |
| 25 ], | 26 ], |
| 27 'link_settings': { |
| 28 'libraries': [ |
| 29 '-lurlmon.lib', |
| 30 ], |
| 31 }, |
| 26 }, | 32 }, |
| 27 ], | 33 ], |
| 28 } | 34 } |
| OLD | NEW |