OLD | NEW |
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 Loading... |
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 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1244 ], | 1252 ], |
1245 }], | 1253 }], |
1246 ['enable_webrtc==0', { | 1254 ['enable_webrtc==0', { |
1247 'sources!': [ | 1255 'sources!': [ |
1248 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat
e_api.cc', | 1256 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat
e_api.cc', |
1249 ], | 1257 ], |
1250 'sources': [ | 1258 'sources': [ |
1251 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat
e_api_stub.cc', | 1259 'browser/extensions/api/webrtc_logging_private/webrtc_logging_privat
e_api_stub.cc', |
1252 ], | 1260 ], |
1253 }], | 1261 }], |
| 1262 ['enable_app_list==0', { |
| 1263 'sources/': [ |
| 1264 ['exclude', '^browser/apps/drive/'], |
| 1265 ], |
| 1266 }] |
1254 ], | 1267 ], |
1255 }, | 1268 }, |
1256 { | 1269 { |
1257 # Protobuf compiler / generator for chrome.cast.channel-related protocol b
uffers. | 1270 # Protobuf compiler / generator for chrome.cast.channel-related protocol b
uffers. |
1258 'target_name': 'cast_channel_proto', | 1271 'target_name': 'cast_channel_proto', |
1259 'type': 'static_library', | 1272 'type': 'static_library', |
1260 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], | 1273 'sources': [ 'browser/extensions/api/cast_channel/cast_channel.proto' ], |
1261 'variables': { | 1274 'variables': { |
1262 'proto_in_dir': 'browser/extensions/api/cast_channel', | 1275 'proto_in_dir': 'browser/extensions/api/cast_channel', |
1263 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', | 1276 'proto_out_dir': 'chrome/browser/extensions/api/cast_channel', |
1264 }, | 1277 }, |
1265 'includes': [ '../build/protoc.gypi' ] | 1278 'includes': [ '../build/protoc.gypi' ] |
1266 }, | 1279 }, |
1267 ], # 'conditions' | 1280 ], # 'conditions' |
1268 } | 1281 } |
OLD | NEW |