| 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': [ | 9 'includes': [ |
| 10 '../../build/win_precompile.gypi', | 10 '../../build/win_precompile.gypi', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', | 22 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', |
| 23 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', | 23 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
| 24 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', | 24 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', |
| 25 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', | 25 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', |
| 26 ], | 26 ], |
| 27 'include_dirs': [ | 27 'include_dirs': [ |
| 28 '<(DEPTH)', | 28 '<(DEPTH)', |
| 29 '<(DEPTH)/third_party/wtl/include', | 29 '<(DEPTH)/third_party/wtl/include', |
| 30 ], | 30 ], |
| 31 'sources': [ | 31 'sources': [ |
| 32 'plugin_impl_aura.cc', |
| 33 'plugin_impl_aura.h', |
| 34 'plugin_impl_gtk.cc', |
| 35 'plugin_impl_gtk.h', |
| 36 'plugin_impl_mac.h', |
| 37 'plugin_impl_mac.mm', |
| 32 'plugin_impl_win.cc', | 38 'plugin_impl_win.cc', |
| 33 'plugin_impl_win.h', | 39 'plugin_impl_win.h', |
| 34 'plugin_installer_base.cc', | 40 'plugin_installer_base.cc', |
| 35 'plugin_installer_base.h', | 41 'plugin_installer_base.h', |
| 36 'plugin_main.cc', | 42 'plugin_main.cc', |
| 37 'plugin_main.h', | 43 'plugin_main.h', |
| 38 ], | 44 ], |
| 39 'conditions': [ | 45 'conditions': [ |
| 40 ['OS=="win"', { | 46 ['OS=="win"', { |
| 41 'link_settings': { | 47 'link_settings': { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 72 'variables': { | 78 'variables': { |
| 73 'grit_grd_file': 'default_plugin_resources.grd', | 79 'grit_grd_file': 'default_plugin_resources.grd', |
| 74 }, | 80 }, |
| 75 'includes': [ '../../build/grit_action.gypi' ], | 81 'includes': [ '../../build/grit_action.gypi' ], |
| 76 }, | 82 }, |
| 77 ], | 83 ], |
| 78 'includes': [ '../../build/grit_target.gypi' ], | 84 'includes': [ '../../build/grit_target.gypi' ], |
| 79 }, | 85 }, |
| 80 ], | 86 ], |
| 81 } | 87 } |
| OLD | NEW |