Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 10665002: Implement installation of the Chrome App Host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: install-application-host command and other fixes. Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 'browser/extensions/platform_app_launcher.h', 695 'browser/extensions/platform_app_launcher.h',
696 'browser/extensions/api/usb/usb_api.cc', 696 'browser/extensions/api/usb/usb_api.cc',
697 'browser/extensions/api/usb/usb_api.h', 697 'browser/extensions/api/usb/usb_api.h',
698 'browser/extensions/api/usb/usb_device_resource.cc', 698 'browser/extensions/api/usb/usb_device_resource.cc',
699 'browser/extensions/api/usb/usb_device_resource.h', 699 'browser/extensions/api/usb/usb_device_resource.h',
700 ], 700 ],
701 }], 701 }],
702 ], 702 ],
703 }, 703 },
704 ], 704 ],
705 'conditions': [
706 ['OS=="win"', {
707 'targets': [
708 {
709 'target_name': 'app_host',
710 'type': 'executable',
711 'include_dirs': [
712 '..',
713 ],
714 'direct_dependent_settings': {
715 'include_dirs': [
716 '..',
717 ],
718 },
719 'dependencies': [
720 '<(DEPTH)/base/base.gyp:base',
721 '<(DEPTH)/chrome/chrome.gyp:launcher_support',
722 ],
723 'sources': [
724 'browser/extensions/app_host_stub_main.cc',
725 ],
726 },
727 ],
728 }, ], # 'OS=="win"'
729 ], # 'conditions'
705 } 730 }
706 731
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698