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

Side by Side Diff: remoting/remoting.gyp

Issue 23677011: Byte-swap the video frame pixels before passing them to Java. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 3 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'conditions': [ 10 'conditions': [
(...skipping 2524 matching lines...) Expand 10 before | Expand all | Expand 10 after
2535 2535
2536 { 2536 {
2537 'target_name': 'remoting_client', 2537 'target_name': 'remoting_client',
2538 'type': 'static_library', 2538 'type': 'static_library',
2539 'variables': { 'enable_wexit_time_destructors': 1, }, 2539 'variables': { 'enable_wexit_time_destructors': 1, },
2540 'dependencies': [ 2540 'dependencies': [
2541 'remoting_base', 2541 'remoting_base',
2542 'remoting_jingle_glue', 2542 'remoting_jingle_glue',
2543 'remoting_protocol', 2543 'remoting_protocol',
2544 '../third_party/webrtc/modules/modules.gyp:desktop_capture', 2544 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
2545 '../third_party/libyuv/libyuv.gyp:libyuv',
2545 ], 2546 ],
2546 'sources': [ 2547 'sources': [
2547 'client/audio_decode_scheduler.cc', 2548 'client/audio_decode_scheduler.cc',
2548 'client/audio_decode_scheduler.h', 2549 'client/audio_decode_scheduler.h',
2549 'client/audio_player.cc', 2550 'client/audio_player.cc',
2550 'client/audio_player.h', 2551 'client/audio_player.h',
2551 'client/chromoting_client.cc', 2552 'client/chromoting_client.cc',
2552 'client/chromoting_client.h', 2553 'client/chromoting_client.h',
2553 'client/chromoting_stats.cc', 2554 'client/chromoting_stats.cc',
2554 'client/chromoting_stats.h', 2555 'client/chromoting_stats.h',
2555 'client/client_config.cc', 2556 'client/client_config.cc',
2556 'client/client_config.h', 2557 'client/client_config.h',
2557 'client/client_context.cc', 2558 'client/client_context.cc',
2558 'client/client_context.h', 2559 'client/client_context.h',
2559 'client/client_user_interface.h', 2560 'client/client_user_interface.h',
2560 'client/frame_consumer.h', 2561 'client/frame_consumer.h',
2561 'client/frame_consumer_proxy.cc', 2562 'client/frame_consumer_proxy.cc',
2562 'client/frame_consumer_proxy.h', 2563 'client/frame_consumer_proxy.h',
2563 'client/frame_producer.h', 2564 'client/frame_producer.h',
2564 'client/key_event_mapper.cc', 2565 'client/key_event_mapper.cc',
2565 'client/key_event_mapper.h', 2566 'client/key_event_mapper.h',
2566 'client/rectangle_update_decoder.cc', 2567 'client/rectangle_update_decoder.cc',
2567 'client/rectangle_update_decoder.h', 2568 'client/rectangle_update_decoder.h',
2568 ], 2569 ],
2570 'conditions': [
2571 ['OS=="android"', {
Sergey Ulanov 2013/09/20 18:35:15 You don't need this given that you also added an u
Lambros 2013/09/25 18:40:41 Removed.
2572 'dependencies': [
2573 '../third_party/libyuv/libyuv.gyp:libyuv',
2574 ],
2575 }],
2576 ],
2569 }, # end of target 'remoting_client' 2577 }, # end of target 'remoting_client'
2570 2578
2571 { 2579 {
2572 'target_name': 'remoting_jingle_glue', 2580 'target_name': 'remoting_jingle_glue',
2573 'type': 'static_library', 2581 'type': 'static_library',
2574 'variables': { 'enable_wexit_time_destructors': 1, }, 2582 'variables': { 'enable_wexit_time_destructors': 1, },
2575 'dependencies': [ 2583 'dependencies': [
2576 '../base/base.gyp:base', 2584 '../base/base.gyp:base',
2577 '../jingle/jingle.gyp:jingle_glue', 2585 '../jingle/jingle.gyp:jingle_glue',
2578 '../jingle/jingle.gyp:notifier', 2586 '../jingle/jingle.gyp:notifier',
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
2951 '../base/allocator/allocator.gyp:allocator', 2959 '../base/allocator/allocator.gyp:allocator',
2952 ], 2960 ],
2953 }, 2961 },
2954 ], 2962 ],
2955 ], 2963 ],
2956 }], # end of 'toolkit_uses_gtk == 1' 2964 }], # end of 'toolkit_uses_gtk == 1'
2957 ], # end of 'conditions' 2965 ], # end of 'conditions'
2958 }, # end of target 'remoting_unittests' 2966 }, # end of target 'remoting_unittests'
2959 ], # end of targets 2967 ], # end of targets
2960 } 2968 }
OLDNEW
« remoting/client/rectangle_update_decoder.cc ('K') | « remoting/client/rectangle_update_decoder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698