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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 'client/jni/jni_client.cc', | 52 'client/jni/jni_client.cc', |
53 'client/jni/jni_client.h', | 53 'client/jni/jni_client.h', |
54 'client/jni/jni_frame_consumer.cc', | 54 'client/jni/jni_frame_consumer.cc', |
55 'client/jni/jni_frame_consumer.h', | 55 'client/jni/jni_frame_consumer.h', |
56 'client/jni/jni_touch_event_data.cc', | 56 'client/jni/jni_touch_event_data.cc', |
57 'client/jni/jni_touch_event_data.h', | 57 'client/jni/jni_touch_event_data.h', |
58 'client/jni/remoting_jni_onload.cc', | 58 'client/jni/remoting_jni_onload.cc', |
59 'client/jni/remoting_jni_registrar.cc', | 59 'client/jni/remoting_jni_registrar.cc', |
60 'client/jni/remoting_jni_registrar.h', | 60 'client/jni/remoting_jni_registrar.h', |
61 ], | 61 ], |
| 62 'conditions': [ |
| 63 ['buildtype!="Official"', { |
| 64 'defines': [ |
| 65 'ENABLE_WEBRTC_REMOTING_CLIENT' |
| 66 ] |
| 67 }] |
| 68 ], |
62 }, # end of target 'remoting_client_jni' | 69 }, # end of target 'remoting_client_jni' |
63 { | 70 { |
64 'target_name': 'remoting_android_resources', | 71 'target_name': 'remoting_android_resources', |
65 'type': 'none', | 72 'type': 'none', |
66 'copies': [ | 73 'copies': [ |
67 { | 74 { |
68 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/ra
w', | 75 'destination': '<(SHARED_INTERMEDIATE_DIR)/remoting/android/res/ra
w', |
69 'files': [ | 76 'files': [ |
70 '<(SHARED_INTERMEDIATE_DIR)/remoting/credits.html', | 77 '<(SHARED_INTERMEDIATE_DIR)/remoting/credits.html', |
71 'webapp/base/html/credits_css.css', | 78 'webapp/base/html/credits_css.css', |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 ], | 243 ], |
237 'variables': { | 244 'variables': { |
238 'test_suite_name': 'remoting_unittests', | 245 'test_suite_name': 'remoting_unittests', |
239 }, | 246 }, |
240 'includes': [ '../build/apk_test.gypi' ], | 247 'includes': [ '../build/apk_test.gypi' ], |
241 }, # end of target 'remoting_unittests_apk' | 248 }, # end of target 'remoting_unittests_apk' |
242 ], # end of 'targets' | 249 ], # end of 'targets' |
243 }], # 'OS=="android" | 250 }], # 'OS=="android" |
244 ], # end of 'conditions' | 251 ], # end of 'conditions' |
245 } | 252 } |
OLD | NEW |