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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 '..', | 772 '..', |
773 ], | 773 ], |
774 'direct_dependent_settings': { | 774 'direct_dependent_settings': { |
775 'include_dirs': [ | 775 'include_dirs': [ |
776 '..', | 776 '..', |
777 ], | 777 ], |
778 }, | 778 }, |
779 'dependencies': [ | 779 'dependencies': [ |
780 '<(DEPTH)/base/base.gyp:base', | 780 '<(DEPTH)/base/base.gyp:base', |
781 '<(DEPTH)/chrome/chrome.gyp:launcher_support', | 781 '<(DEPTH)/chrome/chrome.gyp:launcher_support', |
| 782 '<(DEPTH)/google_update/google_update.gyp:google_update', |
782 ], | 783 ], |
783 'sources': [ | 784 'sources': [ |
784 'browser/extensions/app_host.rc', | 785 'browser/extensions/app_host/app_host.rc', |
785 'browser/extensions/app_host_stub_main.cc', | 786 'browser/extensions/app_host/app_host_main.cc', |
| 787 'browser/extensions/app_host/binaries_installer.cc', |
| 788 'browser/extensions/app_host/binaries_installer.h', |
| 789 'browser/extensions/app_host/binaries_installer_internal.cc', |
| 790 'browser/extensions/app_host/binaries_installer_internal.h', |
786 ], | 791 ], |
787 }, | 792 }, |
788 ], | 793 ], |
789 }, ], # 'OS=="win"' | 794 }, ], # 'OS=="win"' |
790 ], # 'conditions' | 795 ], # 'conditions' |
791 } | 796 } |
792 | 797 |
OLD | NEW |