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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
10 } | 10 } |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 "app/linux/blimp_display_manager.cc", | 183 "app/linux/blimp_display_manager.cc", |
184 "app/linux/blimp_display_manager.h", | 184 "app/linux/blimp_display_manager.h", |
185 "app/linux/blimp_main.cc", | 185 "app/linux/blimp_main.cc", |
186 ] | 186 ] |
187 | 187 |
188 deps = [ | 188 deps = [ |
189 ":blimp_client", | 189 ":blimp_client", |
190 ":feature", | 190 ":feature", |
191 "//base", | 191 "//base", |
192 "//blimp/net:blimp_net", | 192 "//blimp/net:blimp_net", |
| 193 "//mojo/edk/system", |
193 "//net", | 194 "//net", |
194 "//ui/events/platform/x11", | 195 "//ui/events/platform/x11", |
195 "//ui/platform_window/x11", | 196 "//ui/platform_window/x11", |
196 ] | 197 ] |
197 | 198 |
198 public_configs = [ "//build/config/linux:x11" ] | 199 public_configs = [ "//build/config/linux:x11" ] |
199 public_deps = [ | 200 public_deps = [ |
200 "//ui/events/platform/x11", | 201 "//ui/events/platform/x11", |
201 ] | 202 ] |
202 } | 203 } |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
416 apk_name = "BlimpTest" | 417 apk_name = "BlimpTest" |
417 apk_under_test = ":blimp_apk" | 418 apk_under_test = ":blimp_apk" |
418 android_manifest = blimp_test_apk_manifest | 419 android_manifest = blimp_test_apk_manifest |
419 deps = [ | 420 deps = [ |
420 ":blimp_test_apk_manifest", | 421 ":blimp_test_apk_manifest", |
421 ":blimp_test_java", | 422 ":blimp_test_java", |
422 google_play_services_resources, | 423 google_play_services_resources, |
423 ] | 424 ] |
424 } | 425 } |
425 } | 426 } |
OLD | NEW |