| 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 50 'plugin_install_job_monitor.cc', |
| 51 'plugin_install_job_monitor.h', | 51 'plugin_install_job_monitor.h', |
| 52 ], | 52 ], |
| 53 }], | 53 }], |
| 54 ['OS=="linux"', { | 54 ['toolkit_uses_gtk==1', { |
| 55 'dependencies': [ | 55 'dependencies': [ |
| 56 '<(DEPTH)/build/linux/system.gyp:gtk', | 56 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 57 ], | 57 ], |
| 58 }], | 58 }], |
| 59 ], | 59 ], |
| 60 }, | 60 }, |
| 61 # This can't be part of chrome.gyp:chrome_resources because then there'd | 61 # This can't be part of chrome.gyp:chrome_resources because then there'd |
| 62 # be a cyclic dependency. | 62 # be a cyclic dependency. |
| 63 { | 63 { |
| 64 'target_name': 'default_plugin_resources', | 64 'target_name': 'default_plugin_resources', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 78 'includes': [ '../../build/grit_target.gypi' ], | 78 'includes': [ '../../build/grit_target.gypi' ], |
| 79 }, | 79 }, |
| 80 ], | 80 ], |
| 81 } | 81 } |
| 82 | 82 |
| 83 # Local Variables: | 83 # Local Variables: |
| 84 # tab-width:2 | 84 # tab-width:2 |
| 85 # indent-tabs-mode:nil | 85 # indent-tabs-mode:nil |
| 86 # End: | 86 # End: |
| 87 # vim: set expandtab tabstop=2 shiftwidth=2: | 87 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |