OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'browser_extensions', | 8 'target_name': 'browser_extensions', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
(...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 '..', | 750 '..', |
751 ], | 751 ], |
752 'direct_dependent_settings': { | 752 'direct_dependent_settings': { |
753 'include_dirs': [ | 753 'include_dirs': [ |
754 '..', | 754 '..', |
755 ], | 755 ], |
756 }, | 756 }, |
757 'dependencies': [ | 757 'dependencies': [ |
758 '<(DEPTH)/base/base.gyp:base', | 758 '<(DEPTH)/base/base.gyp:base', |
759 '<(DEPTH)/chrome/chrome.gyp:launcher_support', | 759 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 760 '<(DEPTH)/google_update/google_update.gyp:google_update', |
760 ], | 761 ], |
761 'sources': [ | 762 'sources': [ |
762 'browser/extensions/app_host.rc', | 763 'browser/extensions/app_host/app_host.rc', |
763 'browser/extensions/app_host_stub_main.cc', | 764 'browser/extensions/app_host/app_host_main.cc', |
| 765 'browser/extensions/app_host/binaries_installer.cc', |
| 766 'browser/extensions/app_host/binaries_installer.h', |
| 767 'browser/extensions/app_host/binaries_installer_internal.cc', |
| 768 'browser/extensions/app_host/binaries_installer_internal.h', |
764 ], | 769 ], |
765 }, | 770 }, |
766 ], | 771 ], |
767 }, ], # 'OS=="win"' | 772 }, ], # 'OS=="win"' |
768 ], # 'conditions' | 773 ], # 'conditions' |
769 } | 774 } |
770 | 775 |
OLD | NEW |