| 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 'targets': [ | 6 'targets': [ |
| 7 ], | 7 ], |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['OS=="win"', { | 9 ['OS=="win"', { |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'default_plugin', | 12 'target_name': 'default_plugin', |
| 13 'type': '<(library)', | 13 'type': '<(library)', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../net/net.gyp:net_resources', | 15 '../../net/net.gyp:net_resources', |
| 16 '../../third_party/icu/icu.gyp:icui18n', | 16 '../../third_party/icu/icu.gyp:icui18n', |
| 17 '../../third_party/icu/icu.gyp:icuuc', | 17 '../../third_party/icu/icu.gyp:icuuc', |
| 18 '../../third_party/libxml/libxml.gyp:libxml', | 18 '../../third_party/libxml/libxml.gyp:libxml', |
| 19 '../../third_party/npapi/npapi.gyp:npapi', | 19 '../../third_party/npapi/npapi.gyp:npapi', |
| 20 '../webkit.gyp:webkit_resources', | 20 '../webkit.gyp:webkit_resources', |
| 21 '../webkit.gyp:webkit_strings', | 21 '../webkit.gyp:webkit_strings', |
| 22 ], | 22 ], |
| 23 'include_dirs': [ | 23 'include_dirs': [ |
| 24 '../..', | 24 '../..', |
| 25 '../../chrome/third_party/wtl/include', | 25 '<(DEPTH)/third_party/wtl/include', |
| 26 # TODO(bradnelson): this should fall out of the dependencies. | 26 # TODO(bradnelson): this should fall out of the dependencies. |
| 27 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 27 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 28 ], | 28 ], |
| 29 'msvs_guid': '5916D37D-8C97-424F-A904-74E52594C2D6', | 29 'msvs_guid': '5916D37D-8C97-424F-A904-74E52594C2D6', |
| 30 'sources': [ | 30 'sources': [ |
| 31 'default_plugin.cc', | 31 'default_plugin.cc', |
| 32 'default_plugin_resources.h', | 32 'default_plugin_resources.h', |
| 33 'default_plugin_shared.h', | 33 'default_plugin_shared.h', |
| 34 'install_dialog.cc', | 34 'install_dialog.cc', |
| 35 'install_dialog.h', | 35 'install_dialog.h', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 49 ], | 49 ], |
| 50 },], | 50 },], |
| 51 ], | 51 ], |
| 52 } | 52 } |
| 53 | 53 |
| 54 # Local Variables: | 54 # Local Variables: |
| 55 # tab-width:2 | 55 # tab-width:2 |
| 56 # indent-tabs-mode:nil | 56 # indent-tabs-mode:nil |
| 57 # End: | 57 # End: |
| 58 # vim: set expandtab tabstop=2 shiftwidth=2: | 58 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |