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

Side by Side Diff: remoting/remoting.gyp

Issue 18856012: Create new remoting_client_jni target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Gary's recommendations Created 7 years, 5 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 1858 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 '<(RULE_INPUT_PATH)', 1869 '<(RULE_INPUT_PATH)',
1870 '<@(_outputs)', 1870 '<@(_outputs)',
1871 ], 1871 ],
1872 'message': 'Localizing the version information' 1872 'message': 'Localizing the version information'
1873 }, 1873 },
1874 ], 1874 ],
1875 }, # end of target 'remoting_version_resources' 1875 }, # end of target 'remoting_version_resources'
1876 ], # end of 'targets' 1876 ], # end of 'targets'
1877 }], # 'OS=="win"' 1877 }], # 'OS=="win"'
1878 1878
1879 ['OS=="android"', {
1880 'targets': [
1881 {
1882 'target_name': 'remoting_client_jni',
1883 'type': 'shared_library',
1884 'dependencies': [
1885 'remoting_base',
1886 'remoting_client',
1887 'remoting_jingle_glue',
1888 'remoting_protocol',
1889 ],
1890 'sources': [
1891 'client/jni/chromoting_jni_instance.cc',
1892 'client/jni/chromoting_jni_instance.h',
1893 'client/jni/jni_interface.cc',
1894 ],
1895 }, # end of target 'remoting_client_jni'
1896 ], # end of 'targets'
1897 }], # 'OS=="android"'
1898
1879 # The host installation is generated only if WiX is available. If 1899 # The host installation is generated only if WiX is available. If
1880 # component build is used the produced installation will not work due to 1900 # component build is used the produced installation will not work due to
1881 # missing DLLs. We build it anyway to make sure the GYP scripts are executed 1901 # missing DLLs. We build it anyway to make sure the GYP scripts are executed
1882 # by the bots. 1902 # by the bots.
1883 ['OS == "win" and wix_exists == "True" and sas_dll_exists == "True"', { 1903 ['OS == "win" and wix_exists == "True" and sas_dll_exists == "True"', {
1884 'targets': [ 1904 'targets': [
1885 { 1905 {
1886 'target_name': 'remoting_host_installation', 1906 'target_name': 'remoting_host_installation',
1887 'type': 'none', 1907 'type': 'none',
1888 'dependencies': [ 1908 'dependencies': [
(...skipping 1026 matching lines...) Expand 10 before | Expand all | Expand 10 after
2915 '../base/allocator/allocator.gyp:allocator', 2935 '../base/allocator/allocator.gyp:allocator',
2916 ], 2936 ],
2917 }, 2937 },
2918 ], 2938 ],
2919 ], 2939 ],
2920 }], # end of 'toolkit_uses_gtk == 1' 2940 }], # end of 'toolkit_uses_gtk == 1'
2921 ], # end of 'conditions' 2941 ], # end of 'conditions'
2922 }, # end of target 'remoting_unittests' 2942 }, # end of target 'remoting_unittests'
2923 ], # end of targets 2943 ], # end of targets
2924 } 2944 }
OLDNEW
« remoting/client/jni/chromoting_jni_instance.cc ('K') | « remoting/client/jni/jni_interface.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698