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

Side by Side Diff: remoting/remoting.gyp

Issue 21120005: Add Android Chromoting client keyboard input (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improve related comments Created 7 years, 4 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
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 1673 matching lines...) Expand 10 before | Expand all | Expand 10 after
1684 'target_name': 'remoting_client_jni', 1684 'target_name': 'remoting_client_jni',
1685 'type': 'shared_library', 1685 'type': 'shared_library',
1686 'dependencies': [ 1686 'dependencies': [
1687 'remoting_base', 1687 'remoting_base',
1688 'remoting_client', 1688 'remoting_client',
1689 'remoting_jingle_glue', 1689 'remoting_jingle_glue',
1690 'remoting_protocol', 1690 'remoting_protocol',
1691 '../google_apis/google_apis.gyp:google_apis', 1691 '../google_apis/google_apis.gyp:google_apis',
1692 ], 1692 ],
1693 'sources': [ 1693 'sources': [
1694 'client/jni/android_keymap.cc',
1695 'client/jni/android_keymap.h',
1694 'client/jni/chromoting_jni_instance.cc', 1696 'client/jni/chromoting_jni_instance.cc',
1695 'client/jni/chromoting_jni_instance.h', 1697 'client/jni/chromoting_jni_instance.h',
1696 'client/jni/chromoting_jni_runtime.cc', 1698 'client/jni/chromoting_jni_runtime.cc',
1697 'client/jni/chromoting_jni_runtime.h', 1699 'client/jni/chromoting_jni_runtime.h',
1698 'client/jni/jni_frame_consumer.cc', 1700 'client/jni/jni_frame_consumer.cc',
1699 'client/jni/jni_frame_consumer.h', 1701 'client/jni/jni_frame_consumer.h',
1700 'client/jni/jni_interface.cc', 1702 'client/jni/jni_interface.cc',
1701 ], 1703 ],
1702 }, # end of target 'remoting_client_jni' 1704 }, # end of target 'remoting_client_jni'
1703 { 1705 {
1704 'target_name': 'remoting_android_resources', 1706 'target_name': 'remoting_android_resources',
1705 'type': 'none', 1707 'type': 'none',
1706 'copies': [ 1708 'copies': [
1707 { 1709 {
1708 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/dr awable', 1710 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/dr awable',
1709 'files': [ 1711 'files': [
1710 'resources/chromoting128.png', 1712 'resources/chromoting128.png',
1711 'resources/icon_host.png', 1713 'resources/icon_host.png',
1712 ], 1714 ],
1713 }, 1715 },
1714 { 1716 {
1715 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/la yout', 1717 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/la yout',
1716 'files': [ 1718 'files': [
1717 'resources/layout/main.xml', 1719 'resources/layout/main.xml',
1718 'resources/layout/host.xml', 1720 'resources/layout/host.xml',
1719 ], 1721 ],
1720 }, 1722 },
1721 { 1723 {
1724 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/me nu',
1725 'files': [
1726 'resources/actionbar.xml',
1727 ],
1728 },
1729 {
1722 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/va lues', 1730 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/va lues',
1723 'files': [ 1731 'files': [
1724 'resources/strings.xml', 1732 'resources/strings.xml',
1733 'resources/styles.xml',
1725 ], 1734 ],
1726 }, 1735 },
1727 ], 1736 ],
1728 }, # end of target 'remoting_android_resources' 1737 }, # end of target 'remoting_android_resources'
1729 { 1738 {
1730 'target_name': 'remoting_apk', 1739 'target_name': 'remoting_apk',
1731 'type': 'none', 1740 'type': 'none',
1732 'dependencies': [ 1741 'dependencies': [
1733 'remoting_client_jni', 1742 'remoting_client_jni',
1734 'remoting_android_resources', 1743 'remoting_android_resources',
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
2749 '../base/allocator/allocator.gyp:allocator', 2758 '../base/allocator/allocator.gyp:allocator',
2750 ], 2759 ],
2751 }, 2760 },
2752 ], 2761 ],
2753 ], 2762 ],
2754 }], # end of 'toolkit_uses_gtk == 1' 2763 }], # end of 'toolkit_uses_gtk == 1'
2755 ], # end of 'conditions' 2764 ], # end of 'conditions'
2756 }, # end of target 'remoting_unittests' 2765 }, # end of target 'remoting_unittests'
2757 ], # end of targets 2766 ], # end of targets
2758 } 2767 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698