Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: remoting/client/jni/BUILD.gn

Issue 2745583008: Refactoring out the chromoting jni runtime class in favor of chromoting client runtime. (Closed)
Patch Set: Missed out on a () Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « remoting/client/chromoting_client_runtime_unittest.cc ('k') | remoting/client/jni/chromoting_jni_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698