| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 'plugin_main.cc', | 36 'plugin_main.cc', |
| 37 'plugin_main.h', | 37 'plugin_main.h', |
| 38 ], | 38 ], |
| 39 'conditions': [ | 39 'conditions': [ |
| 40 ['OS=="win"', { | 40 ['OS=="win"', { |
| 41 'msvs_guid': '5916D37D-8C97-424F-A904-74E52594C2D6', | 41 'msvs_guid': '5916D37D-8C97-424F-A904-74E52594C2D6', |
| 42 'link_settings': { | 42 'link_settings': { |
| 43 'libraries': ['-lurlmon.lib'], | 43 'libraries': ['-lurlmon.lib'], |
| 44 }, | 44 }, |
| 45 'sources': [ | 45 'sources': [ |
| 46 'default_plugin.cc', | |
| 47 'default_plugin_resources.h', | 46 'default_plugin_resources.h', |
| 48 'install_dialog.cc', | 47 'install_dialog.cc', |
| 49 'install_dialog.h', | 48 'install_dialog.h', |
| 50 'plugin_database_handler.cc', | 49 'plugin_database_handler.cc', |
| 51 'plugin_database_handler.h', | 50 'plugin_database_handler.h', |
| 52 'plugin_install_job_monitor.cc', | 51 'plugin_install_job_monitor.cc', |
| 53 'plugin_install_job_monitor.h', | 52 'plugin_install_job_monitor.h', |
| 54 ], | 53 ], |
| 55 }], | 54 }], |
| 56 ['OS=="linux"', { | 55 ['OS=="linux"', { |
| 57 'dependencies': [ | 56 'dependencies': [ |
| 58 '../../build/linux/system.gyp:gtk', | 57 '../../build/linux/system.gyp:gtk', |
| 59 ], | 58 ], |
| 60 }], | 59 }], |
| 61 ], | 60 ], |
| 62 }, | 61 }, |
| 63 ], | 62 ], |
| 64 } | 63 } |
| 65 | 64 |
| 66 # Local Variables: | 65 # Local Variables: |
| 67 # tab-width:2 | 66 # tab-width:2 |
| 68 # indent-tabs-mode:nil | 67 # indent-tabs-mode:nil |
| 69 # End: | 68 # End: |
| 70 # vim: set expandtab tabstop=2 shiftwidth=2: | 69 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |