OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
8 } | 8 } |
9 | 9 |
10 component("blimp_client") { | 10 component("blimp_client") { |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 deps = [ | 45 deps = [ |
46 "//base", | 46 "//base", |
47 "//blimp/common:blimp_common", | 47 "//blimp/common:blimp_common", |
48 "//blimp/common/proto", | 48 "//blimp/common/proto", |
49 "//blimp/net:blimp_net", | 49 "//blimp/net:blimp_net", |
50 "//cc", | 50 "//cc", |
51 "//cc/proto", | 51 "//cc/proto", |
52 "//gpu/command_buffer/client:gl_in_process_context", | 52 "//gpu/command_buffer/client:gl_in_process_context", |
53 "//gpu/command_buffer/common:gles2_utils", | 53 "//gpu/command_buffer/common:gles2_utils", |
54 "//gpu/skia_bindings", | 54 "//gpu/skia_bindings", |
| 55 "//net", |
55 "//ui/events/blink", | 56 "//ui/events/blink", |
56 "//ui/events/gestures/blink", | 57 "//ui/events/gestures/blink", |
57 "//ui/gfx/geometry", | 58 "//ui/gfx/geometry", |
58 "//ui/gl", | 59 "//ui/gl", |
59 "//url:url", | 60 "//url:url", |
60 ] | 61 ] |
61 } | 62 } |
62 | 63 |
63 source_set("unit_tests") { | 64 source_set("unit_tests") { |
64 testonly = true | 65 testonly = true |
(...skipping 26 matching lines...) Expand all Loading... |
91 "linux/blimp_display_manager.cc", | 92 "linux/blimp_display_manager.cc", |
92 "linux/blimp_display_manager.h", | 93 "linux/blimp_display_manager.h", |
93 "linux/blimp_main.cc", | 94 "linux/blimp_main.cc", |
94 "session/blimp_client_session_linux.cc", | 95 "session/blimp_client_session_linux.cc", |
95 "session/blimp_client_session_linux.h", | 96 "session/blimp_client_session_linux.h", |
96 ] | 97 ] |
97 | 98 |
98 deps = [ | 99 deps = [ |
99 ":blimp_client", | 100 ":blimp_client", |
100 "//base", | 101 "//base", |
| 102 "//blimp/net:blimp_net", |
| 103 "//net", |
101 "//ui/events/platform/x11", | 104 "//ui/events/platform/x11", |
102 "//ui/platform_window/x11", | 105 "//ui/platform_window/x11", |
103 ] | 106 ] |
104 | 107 |
105 public_configs = [ "//build/config/linux:x11" ] | 108 public_configs = [ "//build/config/linux:x11" ] |
106 public_deps = [ | 109 public_deps = [ |
107 "//ui/events/platform/x11", | 110 "//ui/events/platform/x11", |
108 ] | 111 ] |
109 } | 112 } |
110 } | 113 } |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 "android/javatests/src/org/chromium/blimp/auth/MockTokenSource.java", | 243 "android/javatests/src/org/chromium/blimp/auth/MockTokenSource.java", |
241 "android/javatests/src/org/chromium/blimp/auth/RetryingTokenSourceTest.jav
a", | 244 "android/javatests/src/org/chromium/blimp/auth/RetryingTokenSourceTest.jav
a", |
242 ] | 245 ] |
243 } | 246 } |
244 | 247 |
245 shared_library("blimp_client_android") { | 248 shared_library("blimp_client_android") { |
246 deps = [ | 249 deps = [ |
247 ":blimp_client", | 250 ":blimp_client", |
248 ":jni_headers", | 251 ":jni_headers", |
249 "//base", | 252 "//base", |
| 253 "//blimp/common/proto", |
250 "//blimp/net:blimp_net", | 254 "//blimp/net:blimp_net", |
251 "//skia", | 255 "//skia", |
252 "//ui/gfx/geometry", | 256 "//ui/gfx/geometry", |
253 "//ui/gl", | 257 "//ui/gl", |
254 "//url:url", | 258 "//url:url", |
255 ] | 259 ] |
256 | 260 |
257 sources = [ | 261 sources = [ |
258 "android/blimp_jni_registrar.cc", | 262 "android/blimp_jni_registrar.cc", |
259 "android/blimp_jni_registrar.h", | 263 "android/blimp_jni_registrar.h", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 apk_name = "BlimpTest" | 296 apk_name = "BlimpTest" |
293 apk_under_test = ":blimp_apk" | 297 apk_under_test = ":blimp_apk" |
294 android_manifest = blimp_test_apk_manifest | 298 android_manifest = blimp_test_apk_manifest |
295 deps = [ | 299 deps = [ |
296 ":blimp_test_apk_manifest", | 300 ":blimp_test_apk_manifest", |
297 ":blimp_test_java", | 301 ":blimp_test_java", |
298 google_play_services_resources, | 302 google_play_services_resources, |
299 ] | 303 ] |
300 } | 304 } |
301 } | 305 } |
OLD | NEW |