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

Side by Side Diff: chrome/chrome_browser_extensions.gypi

Issue 308003005: app_list: Drive app integration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: track generated instead of abusing from_bookmark() etc Created 6 years, 6 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) 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 ], 71 ],
72 'sources': [ 72 'sources': [
73 # All .cc, .h, .m, and .mm files under browser/extensions except for 73 # All .cc, .h, .m, and .mm files under browser/extensions except for
74 # tests and mocks. 74 # tests and mocks.
75 'browser/apps/app_launch_for_metro_restart_win.cc', 75 'browser/apps/app_launch_for_metro_restart_win.cc',
76 'browser/apps/app_launch_for_metro_restart_win.h', 76 'browser/apps/app_launch_for_metro_restart_win.h',
77 'browser/apps/app_url_redirector.cc', 77 'browser/apps/app_url_redirector.cc',
78 'browser/apps/app_url_redirector.h', 78 'browser/apps/app_url_redirector.h',
79 'browser/apps/chrome_apps_client.cc', 79 'browser/apps/chrome_apps_client.cc',
80 'browser/apps/chrome_apps_client.h', 80 'browser/apps/chrome_apps_client.h',
81 'browser/apps/drive/drive_app_converter.cc',
82 'browser/apps/drive/drive_app_converter.h',
83 'browser/apps/drive/drive_app_mapping.cc',
84 'browser/apps/drive/drive_app_mapping.h',
85 'browser/apps/drive/drive_app_provider.cc',
86 'browser/apps/drive/drive_app_provider.h',
87 'browser/apps/drive/drive_service_bridge.cc',
88 'browser/apps/drive/drive_service_bridge.h',
81 'browser/apps/ephemeral_app_launcher.cc', 89 'browser/apps/ephemeral_app_launcher.cc',
82 'browser/apps/ephemeral_app_launcher.h', 90 'browser/apps/ephemeral_app_launcher.h',
83 'browser/apps/ephemeral_app_service.cc', 91 'browser/apps/ephemeral_app_service.cc',
84 'browser/apps/ephemeral_app_service.h', 92 'browser/apps/ephemeral_app_service.h',
85 'browser/apps/ephemeral_app_service_factory.cc', 93 'browser/apps/ephemeral_app_service_factory.cc',
86 'browser/apps/ephemeral_app_service_factory.h', 94 'browser/apps/ephemeral_app_service_factory.h',
87 'browser/apps/ephemeral_app_throttle.cc', 95 'browser/apps/ephemeral_app_throttle.cc',
88 'browser/apps/ephemeral_app_throttle.h', 96 'browser/apps/ephemeral_app_throttle.h',
89 'browser/apps/install_chrome_app.cc', 97 'browser/apps/install_chrome_app.cc',
90 'browser/apps/install_chrome_app.h', 98 'browser/apps/install_chrome_app.h',
(...skipping 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 ], 1243 ],
1236 }], 1244 }],
1237 ['enable_webrtc==0', { 1245 ['enable_webrtc==0', {
1238 'sources!': [ 1246 'sources!': [
1239 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_api.cc', 1247 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_api.cc',
1240 ], 1248 ],
1241 'sources': [ 1249 'sources': [
1242 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_api_stub.cc', 1250 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat e_api_stub.cc',
1243 ], 1251 ],
1244 }], 1252 }],
1253 ['enable_app_list==0', {
1254 'sources/': [
1255 ['exclude', '^browser/apps/drive/'],
1256 ],
1257 }]
1245 ], 1258 ],
1246 }, 1259 },
1247 { 1260 {
1248 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers. 1261 # Protobuf compiler / generator for chrome.cast.channel-related protocol b uffers.
1249 'target_name': 'cast_channel_proto', 1262 'target_name': 'cast_channel_proto',
1250 'type': 'static_library', 1263 'type': 'static_library',
1251 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], 1264 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ],
1252 'variables': { 1265 'variables': {
1253 'proto_in_dir': 'browser/extensions/api/cast_channel', 1266 'proto_in_dir': 'browser/extensions/api/cast_channel',
1254 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', 1267 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel',
1255 }, 1268 },
1256 'includes': [ '../build/protoc.gypi' ] 1269 'includes': [ '../build/protoc.gypi' ]
1257 }, 1270 },
1258 ], # 'conditions' 1271 ], # 'conditions'
1259 } 1272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698