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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 shared_library("blimp_client_android") { | 461 shared_library("blimp_client_android") { |
462 deps = [ | 462 deps = [ |
463 ":client", | 463 ":client", |
464 ":jni_headers", | 464 ":jni_headers", |
465 "//base", | 465 "//base", |
466 "//blimp/common", | 466 "//blimp/common", |
467 "//blimp/common/proto", | 467 "//blimp/common/proto", |
468 "//blimp/net", | 468 "//blimp/net", |
469 "//components/safe_json/android:safe_json_jni_headers", | 469 "//components/safe_json/android:safe_json_jni_headers", |
470 "//components/url_formatter", | 470 "//components/url_formatter", |
| 471 "//components/version_info", |
471 "//net", | 472 "//net", |
472 "//skia", | 473 "//skia", |
473 "//ui/base/ime:text_input_types", | 474 "//ui/base/ime:text_input_types", |
474 "//ui/gfx/geometry", | 475 "//ui/gfx/geometry", |
475 "//ui/gl", | 476 "//ui/gl", |
476 "//url:url", | 477 "//url:url", |
477 ] | 478 ] |
478 | 479 |
479 sources = [ | 480 sources = [ |
480 "app/android/blimp_client_session_android.cc", | 481 "app/android/blimp_client_session_android.cc", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 apk_name = "BlimpTest" | 521 apk_name = "BlimpTest" |
521 apk_under_test = ":blimp_apk" | 522 apk_under_test = ":blimp_apk" |
522 android_manifest = blimp_test_apk_manifest | 523 android_manifest = blimp_test_apk_manifest |
523 deps = [ | 524 deps = [ |
524 ":blimp_test_apk_manifest", | 525 ":blimp_test_apk_manifest", |
525 ":blimp_test_java", | 526 ":blimp_test_java", |
526 google_play_services_resources, | 527 google_play_services_resources, |
527 ] | 528 ] |
528 } | 529 } |
529 } | 530 } |
OLD | NEW |