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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 12310059: Move app_host target from c/b/extensions into src/apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/browser/extensions/app_host/update.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 904 matching lines...) Expand 10 before | Expand all | Expand 10 after
915 'browser/extensions/extension_error_ui_default.h', 915 'browser/extensions/extension_error_ui_default.h',
916 'browser/extensions/extension_tab_util.cc', 916 'browser/extensions/extension_tab_util.cc',
917 'browser/extensions/platform_app_launcher.cc', 917 'browser/extensions/platform_app_launcher.cc',
918 'browser/extensions/platform_app_launcher.h', 918 'browser/extensions/platform_app_launcher.h',
919 ], 919 ],
920 }], 920 }],
921 ], 921 ],
922 }, 922 },
923 ], 923 ],
924 'conditions': [ 924 'conditions': [
925 ['OS=="win"', {
926 'targets': [
927 {
928 'target_name': 'app_host',
929 'type': 'executable',
930 'include_dirs': [
931 '..',
932 ],
933 'direct_dependent_settings': {
934 'include_dirs': [
935 '..',
936 ],
937 },
938 'dependencies': [
939 '<(DEPTH)/base/base.gyp:base',
940 '<(DEPTH)/chrome/chrome.gyp:chrome_version_resources',
941 '<(DEPTH)/chrome/chrome.gyp:launcher_support',
942 '<(DEPTH)/google_update/google_update.gyp:google_update',
943 ],
944 'sources': [
945 'browser/extensions/app_host/app_host.rc',
946 'browser/extensions/app_host/app_host_main.cc',
947 'browser/extensions/app_host/app_host_resource.h',
948 'browser/extensions/app_host/binaries_installer.cc',
949 'browser/extensions/app_host/binaries_installer.h',
950 'browser/extensions/app_host/update.cc',
951 'browser/extensions/app_host/update.h',
952 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/app_host_exe_version.rc',
953 ],
954 'msvs_settings': {
955 'VCLinkerTool': {
956 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
957 },
958 },
959 },
960 ],
961 },], # 'OS=="win"'
962 ['chromeos==1', { 925 ['chromeos==1', {
963 'targets': [ 926 'targets': [
964 { 927 {
965 # Protobuf compiler / generator for contacts-related protocol buffers. 928 # Protobuf compiler / generator for contacts-related protocol buffers.
966 'target_name': 'contacts_proto', 929 'target_name': 'contacts_proto',
967 'type': 'static_library', 930 'type': 'static_library',
968 'sources': [ 'browser/chromeos/contacts/contact.proto' ], 931 'sources': [ 'browser/chromeos/contacts/contact.proto' ],
969 'variables': { 932 'variables': {
970 'proto_in_dir': 'browser/chromeos/contacts', 933 'proto_in_dir': 'browser/chromeos/contacts',
971 'proto_out_dir': 'chrome/browser/chromeos/contacts', 934 'proto_out_dir': 'chrome/browser/chromeos/contacts',
972 }, 935 },
973 'includes': [ '../build/protoc.gypi' ] 936 'includes': [ '../build/protoc.gypi' ]
974 }, 937 },
975 ], 938 ],
976 },], # 'chromeos=1' 939 },], # 'chromeos=1'
977 ], # 'conditions' 940 ], # 'conditions'
978 } 941 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_host/update.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698