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 'targets': [ |
| 13 { |
| 14 'target_name': 'activex_shim', |
| 15 'type': 'static_library', |
| 16 'dependencies': [ |
| 17 '../../base/base.gyp:base', |
| 18 '../../third_party/npapi/npapi.gyp:npapi', |
| 19 '../../build/temp_gyp/googleurl.gyp:googleurl', |
| 20 ], |
| 21 'sources': [ |
| 22 'activex_plugin.cc', |
| 23 'activex_plugin.h', |
| 24 'activex_shared.cc', |
| 25 'activex_shared.h', |
| 26 'activex_util.cc', |
| 27 'activex_util.h', |
| 28 'dispatch_object.cc', |
| 29 'dispatch_object.h', |
| 30 'ihtmldocument_impl.h', |
| 31 'iwebbrowser_impl.h', |
| 32 'npn_scripting.cc', |
| 33 'npn_scripting.h', |
| 34 'npp_impl.cc', |
| 35 'npp_impl.h', |
| 36 'README', |
| 37 'web_activex_container.cc', |
| 38 'web_activex_container.h', |
| 39 'web_activex_site.cc', |
| 40 'web_activex_site.h', |
| 41 ], |
| 42 'libraries': [ |
| 43 'urlmon.lib', |
| 44 ], |
| 45 }, |
| 46 ], |
| 47 } |
OLD | NEW |