| 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 ], | 10 ], |
| 11 'conditions': [ | 11 'conditions': [ |
| 12 ['OS=="win"', { | 12 ['OS=="win"', { |
| 13 'targets': [ | 13 'targets': [ |
| 14 { | 14 { |
| 15 'target_name': 'default_plugin', | 15 'target_name': 'default_plugin', |
| 16 'type': 'static_library', | 16 'type': '<(library)', |
| 17 'dependencies': [ | 17 'dependencies': [ |
| 18 '../../third_party/libxml/libxml.gyp:libxml', | 18 '../../third_party/libxml/libxml.gyp:libxml', |
| 19 '../../third_party/icu38/icu38.gyp:icui18n', | 19 '../../third_party/icu38/icu38.gyp:icui18n', |
| 20 '../../third_party/icu38/icu38.gyp:icuuc', | 20 '../../third_party/icu38/icu38.gyp:icuuc', |
| 21 '../../third_party/npapi/npapi.gyp:npapi', | 21 '../../third_party/npapi/npapi.gyp:npapi', |
| 22 '../webkit.gyp:webkit_resources', | 22 '../webkit.gyp:webkit_resources', |
| 23 '../../net/net.gyp:net_resources', | 23 '../../net/net.gyp:net_resources', |
| 24 ], | 24 ], |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 '../..', | 26 '../..', |
| (...skipping 19 matching lines...) Expand all Loading... |
| 46 'plugin_main.h', | 46 'plugin_main.h', |
| 47 ], | 47 ], |
| 48 'link_settings': { | 48 'link_settings': { |
| 49 'libraries': ['-lUrlmon.lib'], | 49 'libraries': ['-lUrlmon.lib'], |
| 50 }, | 50 }, |
| 51 }, | 51 }, |
| 52 ], | 52 ], |
| 53 },], | 53 },], |
| 54 ], | 54 ], |
| 55 } | 55 } |
| OLD | NEW |