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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 "linux/blimp_display_manager.cc", | 91 "linux/blimp_display_manager.cc", |
92 "linux/blimp_display_manager.h", | 92 "linux/blimp_display_manager.h", |
93 "linux/blimp_main.cc", | 93 "linux/blimp_main.cc", |
94 "session/blimp_client_session_linux.cc", | 94 "session/blimp_client_session_linux.cc", |
95 "session/blimp_client_session_linux.h", | 95 "session/blimp_client_session_linux.h", |
96 ] | 96 ] |
97 | 97 |
98 deps = [ | 98 deps = [ |
99 ":blimp_client", | 99 ":blimp_client", |
100 "//base", | 100 "//base", |
| 101 "//blimp/net:blimp_net", |
| 102 "//net", |
101 "//ui/events/platform/x11", | 103 "//ui/events/platform/x11", |
102 "//ui/platform_window/x11", | 104 "//ui/platform_window/x11", |
103 ] | 105 ] |
104 | 106 |
105 public_configs = [ "//build/config/linux:x11" ] | 107 public_configs = [ "//build/config/linux:x11" ] |
106 public_deps = [ | 108 public_deps = [ |
107 "//ui/events/platform/x11", | 109 "//ui/events/platform/x11", |
108 ] | 110 ] |
109 } | 111 } |
110 } | 112 } |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 apk_name = "BlimpTest" | 294 apk_name = "BlimpTest" |
293 apk_under_test = ":blimp_apk" | 295 apk_under_test = ":blimp_apk" |
294 android_manifest = blimp_test_apk_manifest | 296 android_manifest = blimp_test_apk_manifest |
295 deps = [ | 297 deps = [ |
296 ":blimp_test_apk_manifest", | 298 ":blimp_test_apk_manifest", |
297 ":blimp_test_java", | 299 ":blimp_test_java", |
298 google_play_services_resources, | 300 google_play_services_resources, |
299 ] | 301 ] |
300 } | 302 } |
301 } | 303 } |
OLD | NEW |