OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'conditions': [ | 6 'conditions': [ |
7 ['OS=="android"', { | 7 ['OS=="android"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'remoting_jni_headers', | 10 'target_name': 'remoting_jni_headers', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 ], | 76 ], |
77 }, # end of target 'remoting_android_resources' | 77 }, # end of target 'remoting_android_resources' |
78 { | 78 { |
79 'target_name': 'remoting_apk', | 79 'target_name': 'remoting_apk', |
80 'type': 'none', | 80 'type': 'none', |
81 'dependencies': [ | 81 'dependencies': [ |
82 'remoting_client_jni', | 82 'remoting_client_jni', |
83 'remoting_android_resources', | 83 'remoting_android_resources', |
84 ], | 84 ], |
85 'variables': { | 85 'variables': { |
86 'apk_name': 'Chromoting', | 86 'apk_name': '<!(python <(version_py_path) -f <(branding_path) -t "@A
PK_FILE_NAME@")', |
87 'android_app_version_name': '<(version_full)', | 87 'android_app_version_name': '<(version_full)', |
88 'android_app_version_code': '<!(python tools/android_version.py <(an
droid_app_version_name))', | 88 'android_app_version_code': '<!(python tools/android_version.py <(an
droid_app_version_name))', |
89 'manifest_package_name': 'org.chromium.chromoting', | 89 'manifest_package_name': 'org.chromium.chromoting', |
90 'native_lib_target': 'libremoting_client_jni', | 90 'native_lib_target': 'libremoting_client_jni', |
91 'java_in_dir': 'android/java', | 91 'java_in_dir': 'android/java', |
92 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/res' ], | 92 'additional_res_dirs': [ '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/res' ], |
93 'additional_input_paths': [ | 93 'additional_input_paths': [ |
94 '<(PRODUCT_DIR)/obj/remoting/remoting_android_resources.actions_ru
les_copies.stamp', | 94 '<(PRODUCT_DIR)/obj/remoting/remoting_android_resources.actions_ru
les_copies.stamp', |
95 ], | 95 ], |
96 }, | 96 }, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 'variables': { | 134 'variables': { |
135 'test_suite_name': 'remoting_unittests', | 135 'test_suite_name': 'remoting_unittests', |
136 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', | 136 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)remoting_
unittests<(SHARED_LIB_SUFFIX)', |
137 }, | 137 }, |
138 'includes': [ '../build/apk_test.gypi' ], | 138 'includes': [ '../build/apk_test.gypi' ], |
139 }, | 139 }, |
140 ], | 140 ], |
141 }], # 'OS=="android" and gtest_target_type=="shared_library"' | 141 }], # 'OS=="android" and gtest_target_type=="shared_library"' |
142 ], # end of 'conditions' | 142 ], # end of 'conditions' |
143 } | 143 } |
OLD | NEW |