| 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', | |
| 38 'plugin_impl_win.cc', | 32 'plugin_impl_win.cc', |
| 39 'plugin_impl_win.h', | 33 'plugin_impl_win.h', |
| 40 'plugin_installer_base.cc', | 34 'plugin_installer_base.cc', |
| 41 'plugin_installer_base.h', | 35 'plugin_installer_base.h', |
| 42 'plugin_main.cc', | 36 'plugin_main.cc', |
| 43 'plugin_main.h', | 37 'plugin_main.h', |
| 44 ], | 38 ], |
| 45 'conditions': [ | 39 'conditions': [ |
| 46 ['OS=="win"', { | 40 ['OS=="win"', { |
| 47 'link_settings': { | 41 'link_settings': { |
| (...skipping 30 matching lines...) Expand all Loading... |
| 78 'variables': { | 72 'variables': { |
| 79 'grit_grd_file': 'default_plugin_resources.grd', | 73 'grit_grd_file': 'default_plugin_resources.grd', |
| 80 }, | 74 }, |
| 81 'includes': [ '../../build/grit_action.gypi' ], | 75 'includes': [ '../../build/grit_action.gypi' ], |
| 82 }, | 76 }, |
| 83 ], | 77 ], |
| 84 'includes': [ '../../build/grit_target.gypi' ], | 78 'includes': [ '../../build/grit_target.gypi' ], |
| 85 }, | 79 }, |
| 86 ], | 80 ], |
| 87 } | 81 } |
| OLD | NEW |