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

Side by Side Diff: extensions/extensions.gyp

Issue 610633002: Prototype for copresenceSockets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format specifiers build fix Created 6 years, 2 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
« no previous file with comments | « extensions/common/api/schemas.gypi ('k') | tools/metrics/histograms/histograms.xml » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 }], 280 }],
281 ], 281 ],
282 }, 282 },
283 { 283 {
284 # GN version: //extensions/browser 284 # GN version: //extensions/browser
285 'target_name': 'extensions_browser', 285 'target_name': 'extensions_browser',
286 'type': 'static_library', 286 'type': 'static_library',
287 'dependencies': [ 287 'dependencies': [
288 '../base/base.gyp:base', 288 '../base/base.gyp:base',
289 '../base/base.gyp:base_prefs', 289 '../base/base.gyp:base_prefs',
290 '../components/components.gyp:copresence_sockets',
290 '../components/components.gyp:keyed_service_content', 291 '../components/components.gyp:keyed_service_content',
291 '../components/components.gyp:keyed_service_core', 292 '../components/components.gyp:keyed_service_core',
292 '../components/components.gyp:pref_registry', 293 '../components/components.gyp:pref_registry',
293 '../components/components.gyp:sessions', 294 '../components/components.gyp:sessions',
294 '../components/components.gyp:storage_monitor', 295 '../components/components.gyp:storage_monitor',
295 '../components/components.gyp:web_cache_browser', 296 '../components/components.gyp:web_cache_browser',
296 '../components/components.gyp:web_modal', 297 '../components/components.gyp:web_modal',
297 '../content/content.gyp:content_browser', 298 '../content/content.gyp:content_browser',
298 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 299 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
299 '../device/serial/serial.gyp:device_serial', 300 '../device/serial/serial.gyp:device_serial',
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 'browser/api/cast_channel/cast_socket.cc', 376 'browser/api/cast_channel/cast_socket.cc',
376 'browser/api/cast_channel/cast_socket.h', 377 'browser/api/cast_channel/cast_socket.h',
377 'browser/api/cast_channel/cast_framer.cc', 378 'browser/api/cast_channel/cast_framer.cc',
378 'browser/api/cast_channel/cast_framer.h', 379 'browser/api/cast_channel/cast_framer.h',
379 'browser/api/cast_channel/cast_transport.h', 380 'browser/api/cast_channel/cast_transport.h',
380 'browser/api/cast_channel/cast_transport.cc', 381 'browser/api/cast_channel/cast_transport.cc',
381 'browser/api/cast_channel/logger.cc', 382 'browser/api/cast_channel/logger.cc',
382 'browser/api/cast_channel/logger.h', 383 'browser/api/cast_channel/logger.h',
383 'browser/api/cast_channel/logger_util.cc', 384 'browser/api/cast_channel/logger_util.cc',
384 'browser/api/cast_channel/logger_util.h', 385 'browser/api/cast_channel/logger_util.h',
386 'browser/api/copresence_socket/copresence_socket_api.cc',
387 'browser/api/copresence_socket/copresence_socket_api.h',
385 'browser/api/declarative/deduping_factory.h', 388 'browser/api/declarative/deduping_factory.h',
386 'browser/api/declarative/declarative_api.cc', 389 'browser/api/declarative/declarative_api.cc',
387 'browser/api/declarative/declarative_api.h', 390 'browser/api/declarative/declarative_api.h',
388 'browser/api/declarative/declarative_rule.h', 391 'browser/api/declarative/declarative_rule.h',
389 'browser/api/declarative/rules_cache_delegate.cc', 392 'browser/api/declarative/rules_cache_delegate.cc',
390 'browser/api/declarative/rules_cache_delegate.h', 393 'browser/api/declarative/rules_cache_delegate.h',
391 'browser/api/declarative/rules_registry.cc', 394 'browser/api/declarative/rules_registry.cc',
392 'browser/api/declarative/rules_registry.h', 395 'browser/api/declarative/rules_registry.h',
393 'browser/api/declarative/rules_registry_service.cc', 396 'browser/api/declarative/rules_registry_service.cc',
394 'browser/api/declarative/rules_registry_service.h', 397 'browser/api/declarative/rules_registry_service.h',
(...skipping 790 matching lines...) Expand 10 before | Expand all | Expand 10 after
1185 'conditions': [ 1188 'conditions': [
1186 ['OS=="win" and win_use_allocator_shim==1', { 1189 ['OS=="win" and win_use_allocator_shim==1', {
1187 'dependencies': [ 1190 'dependencies': [
1188 '../base/allocator/allocator.gyp:allocator', 1191 '../base/allocator/allocator.gyp:allocator',
1189 ], 1192 ],
1190 }], 1193 }],
1191 ], 1194 ],
1192 }, 1195 },
1193 ] 1196 ]
1194 } 1197 }
OLDNEW
« no previous file with comments | « extensions/common/api/schemas.gypi ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698