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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 190063004: chromeos: Delete old, unused contacts code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge again Created 6 years, 9 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/chrome_browser_chromeos.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | 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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 863 matching lines...) Expand 10 before | Expand all | Expand 10 after
874 'browser/extensions/window_controller_list.cc', 874 'browser/extensions/window_controller_list.cc',
875 'browser/extensions/window_controller_list.h', 875 'browser/extensions/window_controller_list.h',
876 'browser/extensions/window_controller_list_observer.h', 876 'browser/extensions/window_controller_list_observer.h',
877 ], 877 ],
878 'conditions': [ 878 'conditions': [
879 ['chromeos==1', { 879 ['chromeos==1', {
880 'dependencies': [ 880 'dependencies': [
881 '../build/linux/system.gyp:dbus', 881 '../build/linux/system.gyp:dbus',
882 '../chromeos/ime/input_method.gyp:gencode', 882 '../chromeos/ime/input_method.gyp:gencode',
883 '../third_party/libevent/libevent.gyp:libevent', 883 '../third_party/libevent/libevent.gyp:libevent',
884 'contacts_proto',
885 ], 884 ],
886 'sources!': [ 885 'sources!': [
887 'browser/extensions/api/audio/audio_service.cc', 886 'browser/extensions/api/audio/audio_service.cc',
888 'browser/extensions/api/feedback_private/feedback_service_nonchromeo s.cc', 887 'browser/extensions/api/feedback_private/feedback_service_nonchromeo s.cc',
889 'browser/extensions/api/image_writer_private/operation_nonchromeos.c c', 888 'browser/extensions/api/image_writer_private/operation_nonchromeos.c c',
890 'browser/extensions/api/system_display/display_info_provider_aura.cc ', 889 'browser/extensions/api/system_display/display_info_provider_aura.cc ',
891 'browser/extensions/default_apps.cc', 890 'browser/extensions/default_apps.cc',
892 'browser/extensions/default_apps.h', 891 'browser/extensions/default_apps.h',
893 ], 892 ],
894 'sources': [ 893 'sources': [
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
1174 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers. 1173 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers.
1175 'target_name': 'cast_channel_proto', 1174 'target_name': 'cast_channel_proto',
1176 'type': 'static_library', 1175 'type': 'static_library',
1177 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], 1176 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ],
1178 'variables': { 1177 'variables': {
1179 'proto_in_dir': 'browser/extensions/api/cast_channel', 1178 'proto_in_dir': 'browser/extensions/api/cast_channel',
1180 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', 1179 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel',
1181 }, 1180 },
1182 'includes': [ '../build/protoc.gypi' ] 1181 'includes': [ '../build/protoc.gypi' ]
1183 }, 1182 },
1184 ],
1185 'conditions': [
1186 ['chromeos==1', {
1187 'targets': [
1188 {
1189 # Protobuf compiler / generator for contacts-related protocol buffers.
1190 'target_name': 'contacts_proto',
1191 'type': 'static_library',
1192 'sources': [ 'browser/chromeos/contacts/contact.proto' ],
1193 'variables': {
1194 'proto_in_dir': 'browser/chromeos/contacts',
1195 'proto_out_dir': 'chrome/browser/chromeos/contacts',
1196 },
1197 'includes': [ '../build/protoc.gypi' ]
1198 },
1199 ],
1200 },], # 'chromeos=1'
1201 ], # 'conditions' 1183 ], # 'conditions'
1202 } 1184 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_chromeos.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698