OLD | NEW |
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 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1692 'sources': [ | 1692 'sources': [ |
1693 'client/jni/chromoting_jni.cc', | 1693 'client/jni/chromoting_jni.cc', |
1694 'client/jni/chromoting_jni.h', | 1694 'client/jni/chromoting_jni.h', |
1695 'client/jni/chromoting_jni_instance.cc', | 1695 'client/jni/chromoting_jni_instance.cc', |
1696 'client/jni/chromoting_jni_instance.h', | 1696 'client/jni/chromoting_jni_instance.h', |
1697 'client/jni/jni_frame_consumer.cc', | 1697 'client/jni/jni_frame_consumer.cc', |
1698 'client/jni/jni_frame_consumer.h', | 1698 'client/jni/jni_frame_consumer.h', |
1699 'client/jni/jni_interface.cc', | 1699 'client/jni/jni_interface.cc', |
1700 ], | 1700 ], |
1701 }, # end of target 'remoting_client_jni' | 1701 }, # end of target 'remoting_client_jni' |
| 1702 { |
| 1703 'target_name': 'remoting_android_resources', |
| 1704 'type': 'none', |
| 1705 'copies': [ |
| 1706 { |
| 1707 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/dr
awable', |
| 1708 'files': [ |
| 1709 'resources/chromoting128.png', |
| 1710 'resources/icon_host.png', |
| 1711 ], |
| 1712 }, |
| 1713 { |
| 1714 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/la
yout', |
| 1715 'files': [ |
| 1716 'resources/layout/main.xml', |
| 1717 'resources/layout/host.xml', |
| 1718 ], |
| 1719 }, |
| 1720 { |
| 1721 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/va
lues', |
| 1722 'files': [ |
| 1723 'resources/strings.xml', |
| 1724 ], |
| 1725 }, |
| 1726 ], |
| 1727 }, # end of target 'remoting_android_resources' |
| 1728 { |
| 1729 'target_name': 'remoting_apk', |
| 1730 'type': 'none', |
| 1731 'dependencies': [ |
| 1732 'remoting_client_jni', |
| 1733 'remoting_android_resources', |
| 1734 ], |
| 1735 'variables': { |
| 1736 'apk_name': 'Chromoting', |
| 1737 'manifest_package_name': 'org.chromium.chromoting', |
| 1738 'native_lib_target': 'libremoting_client_jni', |
| 1739 'java_in_dir': 'android/java', |
| 1740 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/res' ], |
| 1741 'additional_input_paths': [ '<(PRODUCT_DIR)/obj/remoting/remoting_an
droid_resources.actions_rules_copies.stamp' ], |
| 1742 }, |
| 1743 'includes': [ '../build/java_apk.gypi' ], |
| 1744 }, # end of target 'remoting_apk' |
1702 ], # end of 'targets' | 1745 ], # end of 'targets' |
1703 }], # 'OS=="android"' | 1746 }], # 'OS=="android"' |
1704 | 1747 |
1705 # The host installation is generated only if WiX is available. If | 1748 # The host installation is generated only if WiX is available. If |
1706 # component build is used the produced installation will not work due to | 1749 # component build is used the produced installation will not work due to |
1707 # missing DLLs. We build it anyway to make sure the GYP scripts are executed | 1750 # missing DLLs. We build it anyway to make sure the GYP scripts are executed |
1708 # by the bots. | 1751 # by the bots. |
1709 ['OS == "win" and wix_exists == "True" and sas_dll_exists == "True"', { | 1752 ['OS == "win" and wix_exists == "True" and sas_dll_exists == "True"', { |
1710 'targets': [ | 1753 'targets': [ |
1711 { | 1754 { |
(...skipping 987 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2699 '../base/allocator/allocator.gyp:allocator', | 2742 '../base/allocator/allocator.gyp:allocator', |
2700 ], | 2743 ], |
2701 }, | 2744 }, |
2702 ], | 2745 ], |
2703 ], | 2746 ], |
2704 }], # end of 'toolkit_uses_gtk == 1' | 2747 }], # end of 'toolkit_uses_gtk == 1' |
2705 ], # end of 'conditions' | 2748 ], # end of 'conditions' |
2706 }, # end of target 'remoting_unittests' | 2749 }, # end of target 'remoting_unittests' |
2707 ], # end of targets | 2750 ], # end of targets |
2708 } | 2751 } |
OLD | NEW |