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

Side by Side Diff: content/content_renderer.gypi

Issue 175903002: Re-add snap-back behavior (Chrome side) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 10 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 | « no previous file | content/renderer/render_thread_impl.cc » ('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 'dependencies': [ 6 'dependencies': [
7 '../gin/gin.gyp:gin', 7 '../gin/gin.gyp:gin',
8 '../jingle/jingle.gyp:jingle_glue', 8 '../jingle/jingle.gyp:jingle_glue',
9 '../media/media.gyp:media', 9 '../media/media.gyp:media',
10 '../net/net.gyp:net', 10 '../net/net.gyp:net',
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 'renderer/webcrypto/shared_crypto.cc', 524 'renderer/webcrypto/shared_crypto.cc',
525 'renderer/webcrypto/shared_crypto.h', 525 'renderer/webcrypto/shared_crypto.h',
526 'renderer/webcrypto/webcrypto_impl.cc', 526 'renderer/webcrypto/webcrypto_impl.cc',
527 'renderer/webcrypto/webcrypto_impl.h', 527 'renderer/webcrypto/webcrypto_impl.h',
528 'renderer/webcrypto/webcrypto_util.cc', 528 'renderer/webcrypto/webcrypto_util.cc',
529 'renderer/webcrypto/webcrypto_util.h', 529 'renderer/webcrypto/webcrypto_util.h',
530 'renderer/webgraphicscontext3d_provider_impl.cc', 530 'renderer/webgraphicscontext3d_provider_impl.cc',
531 'renderer/webgraphicscontext3d_provider_impl.h', 531 'renderer/webgraphicscontext3d_provider_impl.h',
532 'renderer/webpublicsuffixlist_impl.cc', 532 'renderer/webpublicsuffixlist_impl.cc',
533 'renderer/webpublicsuffixlist_impl.h', 533 'renderer/webpublicsuffixlist_impl.h',
534 'renderer/webscrollbarbehavior_impl_gtkoraura.cc',
535 'renderer/webscrollbarbehavior_impl_gtkoraura.h',
536 'renderer/webscrollbarbehavior_impl_mac.mm',
537 'renderer/webscrollbarbehavior_impl_mac.h',
534 'renderer/websharedworker_proxy.cc', 538 'renderer/websharedworker_proxy.cc',
535 'renderer/websharedworker_proxy.h', 539 'renderer/websharedworker_proxy.h',
536 ], 540 ],
537 'conditions': [ 541 'conditions': [
538 ['notifications==0', { 542 ['notifications==0', {
539 'sources!': [ 543 'sources!': [
540 'renderer/notification_provider.cc', 544 'renderer/notification_provider.cc',
541 'renderer/active_notification_tracker.cc', 545 'renderer/active_notification_tracker.cc',
542 ], 546 ],
543 }], 547 }],
544 ['input_speech==0', { 548 ['input_speech==0', {
545 'sources!': [ 549 'sources!': [
546 'renderer/input_tag_speech_dispatcher.cc', 550 'renderer/input_tag_speech_dispatcher.cc',
547 'renderer/input_tag_speech_dispatcher.h', 551 'renderer/input_tag_speech_dispatcher.h',
548 ] 552 ]
549 }], 553 }],
550 ['toolkit_uses_gtk == 1', { 554 ['toolkit_uses_gtk == 1', {
551 'dependencies': [ 555 'dependencies': [
552 '../build/linux/system.gyp:gtk', 556 '../build/linux/system.gyp:gtk',
553 ], 557 ],
554 }], 558 }],
555 ['OS=="mac"', { 559 ['OS=="mac"', {
556 'sources!': [ 560 'sources!': [
557 'common/process_watcher_posix.cc', 561 'common/process_watcher_posix.cc',
562 'renderer/webscrollbarbehavior_impl_gtkoraura.cc',
563 'renderer/webscrollbarbehavior_impl_gtkoraura.h',
Avi (use Gerrit) 2014/02/25 03:44:31 Huh. Do we do this anywhere else? Kind of a bummer
Peter Kasting 2014/02/25 06:10:02 What specific thing are you referring to when you
564 ],
565 }, {
566 'sources!': [
567 'renderer/webscrollbarbehavior_impl_mac.mm',
568 'renderer/webscrollbarbehavior_impl_mac.h',
558 ], 569 ],
559 }], 570 }],
560 ['OS=="win" and win_use_allocator_shim==1', { 571 ['OS=="win" and win_use_allocator_shim==1', {
561 'dependencies': [ 572 'dependencies': [
562 '../base/allocator/allocator.gyp:allocator', 573 '../base/allocator/allocator.gyp:allocator',
563 ], 574 ],
564 }], 575 }],
565 ['OS=="android"', { 576 ['OS=="android"', {
566 'sources!': [ 577 'sources!': [
567 'renderer/accessibility/renderer_accessibility_focus_only.cc' 578 'renderer/accessibility/renderer_accessibility_focus_only.cc'
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
773 }], 784 }],
774 ], 785 ],
775 'target_conditions': [ 786 'target_conditions': [
776 ['OS=="android"', { 787 ['OS=="android"', {
777 'sources/': [ 788 'sources/': [
778 ['include', '^renderer/render_view_linux\\.cc$'], 789 ['include', '^renderer/render_view_linux\\.cc$'],
779 ], 790 ],
780 }], 791 }],
781 ], 792 ],
782 } 793 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/render_thread_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698