Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/android/config.gni") | |
| 6 import("//build/config/android/rules.gni") | |
| 7 import("//remoting/android/client_java_tmpl.gni") | |
| 8 import("//remoting/android/remoting_apk_tmpl.gni") | |
| 9 import("//remoting/remoting_options.gni") | |
| 10 | |
| 11 group("jni") { | |
| 12 testonly = true | |
| 13 | |
| 14 deps = [ | |
| 15 ":remoting_client_jni", | |
| 16 ] | |
| 17 } | |
| 18 | |
| 19 shared_library("remoting_client_jni") { | |
| 20 deps = [ | |
| 21 "//remoting/android:jni_headers", | |
| 22 "//remoting/base", | |
| 23 "//remoting/client", | |
| 24 "//remoting/client/display", | |
| 25 "//remoting/protocol", | |
| 26 "//ui/events:dom_keycode_converter", | |
| 27 "//ui/gfx", | |
| 28 ] | |
| 29 sources = [ | |
| 30 "android_keymap.cc", | |
| 31 "android_keymap.h", | |
| 32 "chromoting_jni_instance.cc", | |
| 33 "chromoting_jni_instance.h", | |
| 34 "connect_to_host_info.cc", | |
| 35 "connect_to_host_info.h", | |
| 36 "display_updater_factory.h", | |
| 37 "egl_thread_context.cc", | |
| 38 "egl_thread_context.h", | |
| 39 "jni_client.cc", | |
| 40 "jni_client.h", | |
| 41 "jni_gl_display_handler.cc", | |
| 42 "jni_gl_display_handler.h", | |
| 43 "jni_pairing_secret_fetcher.cc", | |
| 44 "jni_pairing_secret_fetcher.h", | |
| 45 "jni_runtime_delegate.cc", | |
| 46 "jni_runtime_delegate.h", | |
| 47 "jni_touch_event_data.cc", | |
| 48 "jni_touch_event_data.h", | |
| 49 "remoting_jni_onload.cc", | |
| 50 "remoting_jni_registrar.cc", | |
| 51 "remoting_jni_registrar.h", | |
| 52 ] | |
| 53 libs = [ | |
| 54 "android", | |
| 55 "OpenSLES", | |
|
Yuwei
2017/03/16 08:38:53
You don't need OpenSLES here any more since it's u
| |
| 56 "EGL", | |
| 57 ] | |
| 58 configs += [ "//remoting/build/config:enable_webrtc_remoting_client" ] | |
| 59 assert_no_deps = [ "//third_party/ffmpeg:*" ] | |
| 60 } | |
| OLD | NEW |