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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 47303005: Implement native bindings for cast extensions API (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build again Created 7 years, 1 month 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 | « no previous file | chrome/common/extensions/api/webrtc_cast_send_transport.idl » ('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) 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': 'renderer', 8 'target_name': 'renderer',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, }, 10 'variables': { 'enable_wexit_time_destructors': 1, },
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'safe_browsing_proto', 378 'safe_browsing_proto',
379 '../third_party/smhasher/smhasher.gyp:murmurhash3', 379 '../third_party/smhasher/smhasher.gyp:murmurhash3',
380 ], 380 ],
381 }, { # safe_browsing==0 || safe_browsing==2 381 }, { # safe_browsing==0 || safe_browsing==2
382 'sources/': [ 382 'sources/': [
383 ['exclude', '^renderer/safe_browsing/'], 383 ['exclude', '^renderer/safe_browsing/'],
384 ], 384 ],
385 }], 385 }],
386 ['enable_webrtc==0', { 386 ['enable_webrtc==0', {
387 'sources!': [ 387 'sources!': [
388 'renderer/extensions/webrtc_native_handler.cc',
389 'renderer/extensions/webrtc_native_handler.h',
388 'renderer/media/chrome_webrtc_log_message_delegate.cc', 390 'renderer/media/chrome_webrtc_log_message_delegate.cc',
389 'renderer/media/chrome_webrtc_log_message_delegate.h', 391 'renderer/media/chrome_webrtc_log_message_delegate.h',
390 'renderer/media/webrtc_logging_message_filter.cc', 392 'renderer/media/webrtc_logging_message_filter.cc',
391 'renderer/media/webrtc_logging_message_filter.h', 393 'renderer/media/webrtc_logging_message_filter.h',
392 ], 394 ],
393 }], 395 }],
394 ['enable_spellcheck==0', { 396 ['enable_spellcheck==0', {
395 'sources/': [ 397 'sources/': [
396 ['exclude', '^renderer/spellchecker/'] 398 ['exclude', '^renderer/spellchecker/']
397 ], 399 ],
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 ['win_use_allocator_shim==1', { 460 ['win_use_allocator_shim==1', {
459 'dependencies': [ 461 'dependencies': [
460 '<(allocator_target)', 462 '<(allocator_target)',
461 ], 463 ],
462 'export_dependent_settings': [ 464 'export_dependent_settings': [
463 '<(allocator_target)', 465 '<(allocator_target)',
464 ], 466 ],
465 }], 467 }],
466 ], 468 ],
467 }], 469 }],
470 ['OS != "ios"', {
471 'dependencies': [
472 # TODO(hclam): See crbug.com/298380 for details.
473 # We should isolate the APIs needed by the renderer.
474 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api',
475 ],
476 }],
468 ], 477 ],
469 }, 478 },
470 ], 479 ],
471 } 480 }
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/api/webrtc_cast_send_transport.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698