| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'chromium_code': 1, | |
| 8 }, | |
| 9 'includes': [ | |
| 10 '../../build/common.gypi', | |
| 11 ], | |
| 12 'conditions': [ | |
| 13 [ 'OS=="win"', { | |
| 14 'targets': [ | |
| 15 { | |
| 16 'target_name': 'activex_shim', | |
| 17 'type': '<(library)', | |
| 18 'msvs_guid': 'F4F4BCAA-EA59-445C-A119-3E6C29647A51', | |
| 19 'dependencies': [ | |
| 20 '../../base/base.gyp:base', | |
| 21 '../../third_party/npapi/npapi.gyp:npapi', | |
| 22 '../../build/temp_gyp/googleurl.gyp:googleurl', | |
| 23 ], | |
| 24 'sources': [ | |
| 25 'activex_plugin.cc', | |
| 26 'activex_plugin.h', | |
| 27 'activex_shared.cc', | |
| 28 'activex_shared.h', | |
| 29 'activex_util.cc', | |
| 30 'activex_util.h', | |
| 31 'dispatch_object.cc', | |
| 32 'dispatch_object.h', | |
| 33 'ihtmldocument_impl.h', | |
| 34 'iwebbrowser_impl.h', | |
| 35 'npn_scripting.cc', | |
| 36 'npn_scripting.h', | |
| 37 'npp_impl.cc', | |
| 38 'npp_impl.h', | |
| 39 'README', | |
| 40 'web_activex_container.cc', | |
| 41 'web_activex_container.h', | |
| 42 'web_activex_site.cc', | |
| 43 'web_activex_site.h', | |
| 44 ], | |
| 45 'link_settings': { | |
| 46 'libraries': [ | |
| 47 '-lurlmon.lib', | |
| 48 ], | |
| 49 }, | |
| 50 }, | |
| 51 ], | |
| 52 }], | |
| 53 ], | |
| 54 } | |
| OLD | NEW |