| 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 'variables': { | 8 'variables': { |
| 9 # These hooks allow official builds to modify the remoting_apk target: | 9 # These hooks allow official builds to modify the remoting_apk target: |
| 10 # Official build of remoting_apk pulls in extra code. | 10 # Official build of remoting_apk pulls in extra code. |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 '<@(remoting_apk_extra_dependencies)', | 179 '<@(remoting_apk_extra_dependencies)', |
| 180 ], | 180 ], |
| 181 'variables': { | 181 'variables': { |
| 182 'apk_name': 'Chromoting', | 182 'apk_name': 'Chromoting', |
| 183 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/AndroidManifest.xml', | 183 'android_manifest_path': '<(SHARED_INTERMEDIATE_DIR)/remoting/androi
d/AndroidManifest.xml', |
| 184 'java_in_dir': '<(remoting_apk_java_in_dir)', | 184 'java_in_dir': '<(remoting_apk_java_in_dir)', |
| 185 'native_lib_target': 'libremoting_client_jni', | 185 'native_lib_target': 'libremoting_client_jni', |
| 186 }, | 186 }, |
| 187 'includes': [ '../build/java_apk.gypi' ], | 187 'includes': [ '../build/java_apk.gypi' ], |
| 188 'conditions': [ | 188 'conditions': [ |
| 189 ['target_arch == "arm"', { | 189 ['enable_cardboard == 1 and target_arch == "arm"', { |
| 190 'dependencies': [ 'remoting_cardboard_extract_native_lib' ], | 190 'dependencies': [ 'remoting_cardboard_extract_native_lib' ], |
| 191 'variables': { | 191 'variables': { |
| 192 'extra_native_libs': [ '<(SHARED_LIB_DIR)/libvrtoolkit.so' ], | 192 'extra_native_libs': [ '<(SHARED_LIB_DIR)/libvrtoolkit.so' ], |
| 193 }, | 193 }, |
| 194 }], | 194 }], |
| 195 ], | 195 ], |
| 196 }, # end of target 'remoting_apk' | 196 }, # end of target 'remoting_apk' |
| 197 { | 197 { |
| 198 'target_name': 'remoting_test_apk_manifest', | 198 'target_name': 'remoting_test_apk_manifest', |
| 199 'type': 'none', | 199 'type': 'none', |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 ], | 243 ], |
| 244 'variables': { | 244 'variables': { |
| 245 'test_suite_name': 'remoting_unittests', | 245 'test_suite_name': 'remoting_unittests', |
| 246 }, | 246 }, |
| 247 'includes': [ '../build/apk_test.gypi' ], | 247 'includes': [ '../build/apk_test.gypi' ], |
| 248 }, # end of target 'remoting_unittests_apk' | 248 }, # end of target 'remoting_unittests_apk' |
| 249 ], # end of 'targets' | 249 ], # end of 'targets' |
| 250 }], # 'OS=="android" | 250 }], # 'OS=="android" |
| 251 ], # end of 'conditions' | 251 ], # end of 'conditions' |
| 252 } | 252 } |
| OLD | NEW |