| 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 'conditions': [ | 12 'conditions': [ |
| 13 [ 'OS=="win"', { | 13 [ 'OS=="win"', { |
| 14 'targets': [ | 14 'targets': [ |
| 15 { | 15 { |
| 16 'target_name': 'activex_shim', | 16 'target_name': 'activex_shim', |
| 17 'type': 'static_library', | 17 'type': '<(library)', |
| 18 'msvs_guid': 'F4F4BCAA-EA59-445C-A119-3E6C29647A51', | 18 'msvs_guid': 'F4F4BCAA-EA59-445C-A119-3E6C29647A51', |
| 19 'dependencies': [ | 19 'dependencies': [ |
| 20 '../../base/base.gyp:base', | 20 '../../base/base.gyp:base', |
| 21 '../../third_party/npapi/npapi.gyp:npapi', | 21 '../../third_party/npapi/npapi.gyp:npapi', |
| 22 '../../build/temp_gyp/googleurl.gyp:googleurl', | 22 '../../build/temp_gyp/googleurl.gyp:googleurl', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'activex_plugin.cc', | 25 'activex_plugin.cc', |
| 26 'activex_plugin.h', | 26 'activex_plugin.h', |
| 27 'activex_shared.cc', | 27 'activex_shared.cc', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 51 'link_settings': { | 51 'link_settings': { |
| 52 'libraries': [ | 52 'libraries': [ |
| 53 '-lurlmon.lib', | 53 '-lurlmon.lib', |
| 54 ], | 54 ], |
| 55 }, | 55 }, |
| 56 }, | 56 }, |
| 57 ], | 57 ], |
| 58 }], | 58 }], |
| 59 ], | 59 ], |
| 60 } | 60 } |
| OLD | NEW |