| 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 29 matching lines...) Expand all Loading... |
| 40 ['OS=="win"', { | 40 ['OS=="win"', { |
| 41 'link_settings': { | 41 'link_settings': { |
| 42 'libraries': ['-lurlmon.lib'], | 42 'libraries': ['-lurlmon.lib'], |
| 43 }, | 43 }, |
| 44 'sources': [ | 44 'sources': [ |
| 45 'default_plugin_resources.h', | 45 'default_plugin_resources.h', |
| 46 'install_dialog.cc', | 46 'install_dialog.cc', |
| 47 'install_dialog.h', | 47 'install_dialog.h', |
| 48 'plugin_database_handler.cc', | 48 'plugin_database_handler.cc', |
| 49 'plugin_database_handler.h', | 49 'plugin_database_handler.h', |
| 50 'plugin_install_job_monitor.cc', | |
| 51 'plugin_install_job_monitor.h', | |
| 52 ], | 50 ], |
| 53 }], | 51 }], |
| 54 ['toolkit_uses_gtk == 1', { | 52 ['toolkit_uses_gtk == 1', { |
| 55 'dependencies': [ | 53 'dependencies': [ |
| 56 '<(DEPTH)/build/linux/system.gyp:gtk', | 54 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 57 ], | 55 ], |
| 58 }], | 56 }], |
| 59 ], | 57 ], |
| 60 }, | 58 }, |
| 61 # This can't be part of chrome.gyp:chrome_resources because then there'd | 59 # This can't be part of chrome.gyp:chrome_resources because then there'd |
| (...skipping 10 matching lines...) Expand all Loading... |
| 72 'variables': { | 70 'variables': { |
| 73 'grit_grd_file': 'default_plugin_resources.grd', | 71 'grit_grd_file': 'default_plugin_resources.grd', |
| 74 }, | 72 }, |
| 75 'includes': [ '../../build/grit_action.gypi' ], | 73 'includes': [ '../../build/grit_action.gypi' ], |
| 76 }, | 74 }, |
| 77 ], | 75 ], |
| 78 'includes': [ '../../build/grit_target.gypi' ], | 76 'includes': [ '../../build/grit_target.gypi' ], |
| 79 }, | 77 }, |
| 80 ], | 78 ], |
| 81 } | 79 } |
| OLD | NEW |