| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': [ |
| 10 '../../build/win_precompile.gypi', |
| 11 ], |
| 9 'targets': [ | 12 'targets': [ |
| 10 { | 13 { |
| 11 'target_name': 'default_plugin', | 14 'target_name': 'default_plugin', |
| 12 'type': 'static_library', | 15 'type': 'static_library', |
| 13 'dependencies': [ | 16 'dependencies': [ |
| 14 ':default_plugin_resources', | 17 ':default_plugin_resources', |
| 15 '<(DEPTH)/base/base.gyp:base', | 18 '<(DEPTH)/base/base.gyp:base', |
| 16 '<(DEPTH)/net/net.gyp:net_resources', | 19 '<(DEPTH)/net/net.gyp:net_resources', |
| 17 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 20 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
| 18 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 21 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
| 19 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', | 22 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', |
| 20 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', | 23 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
| 21 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', | 24 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', |
| 22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', | 25 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', |
| 23 ], | 26 ], |
| 24 'include_dirs': [ | 27 'include_dirs': [ |
| 25 '<(DEPTH)', | 28 '<(DEPTH)', |
| 26 '<(DEPTH)/third_party/wtl/include', | 29 '<(DEPTH)/third_party/wtl/include', |
| 27 ], | 30 ], |
| 28 'sources': [ | 31 'sources': [ |
| 29 'plugin_impl_gtk.cc', | 32 'plugin_impl_gtk.cc', |
| 30 'plugin_impl_gtk.h', | 33 'plugin_impl_gtk.h', |
| 31 'plugin_impl_mac.h', | 34 'plugin_impl_mac.h', |
| 32 'plugin_impl_mac.mm', | 35 'plugin_impl_mac.mm', |
| 33 'plugin_impl_win.cc', | 36 'plugin_impl_win.cc', |
| 34 'plugin_impl_win.h', | 37 'plugin_impl_win.h', |
| 35 'plugin_installer_base.cc', | 38 'plugin_installer_base.cc', |
| 36 'plugin_installer_base.h', | 39 'plugin_installer_base.h', |
| 37 'plugin_main.cc', | 40 'plugin_main.cc', |
| 38 'plugin_main.h', | 41 'plugin_main.h', |
| 39 ], | 42 ], |
| 40 'conditions': [ | 43 'conditions': [ |
| 41 ['use_aura==1', { | 44 ['use_aura==1', { |
| 42 'sources/': [ | 45 'sources/': [ |
| 43 ['exclude', '^plugin_impl_win.cc'], | 46 ['exclude', '^plugin_impl_win.cc'], |
| 44 ['exclude', '^plugin_impl_win.h'], | 47 ['exclude', '^plugin_impl_win.h'], |
| 45 ], | 48 ], |
| 46 }], | 49 }], |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'variables': { | 82 'variables': { |
| 80 'grit_grd_file': 'default_plugin_resources.grd', | 83 'grit_grd_file': 'default_plugin_resources.grd', |
| 81 }, | 84 }, |
| 82 'includes': [ '../../build/grit_action.gypi' ], | 85 'includes': [ '../../build/grit_action.gypi' ], |
| 83 }, | 86 }, |
| 84 ], | 87 ], |
| 85 'includes': [ '../../build/grit_target.gypi' ], | 88 'includes': [ '../../build/grit_target.gypi' ], |
| 86 }, | 89 }, |
| 87 ], | 90 ], |
| 88 } | 91 } |
| OLD | NEW |