| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ":switches", | 49 ":switches", |
| 50 "//components/safe_json", | 50 "//components/safe_json", |
| 51 "//components/url_formatter", | 51 "//components/url_formatter", |
| 52 "//skia", | 52 "//skia", |
| 53 "//ui/events", | 53 "//ui/events", |
| 54 ] | 54 ] |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 ":compositor", | 57 ":compositor", |
| 58 "//base", | 58 "//base", |
| 59 "//blimp/client/core", |
| 59 "//blimp/common", | 60 "//blimp/common", |
| 60 "//blimp/common/proto", | 61 "//blimp/common/proto", |
| 61 "//blimp/net", | 62 "//blimp/net", |
| 62 "//cc", | 63 "//cc", |
| 63 "//gpu/command_buffer/client:gles2_implementation", | 64 "//gpu/command_buffer/client:gles2_implementation", |
| 64 "//gpu/skia_bindings", | 65 "//gpu/skia_bindings", |
| 65 "//net", | 66 "//net", |
| 66 "//third_party/libwebp", | 67 "//third_party/libwebp", |
| 67 "//ui/gfx/geometry", | 68 "//ui/gfx/geometry", |
| 68 "//ui/gl", | 69 "//ui/gl", |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 apk_name = "BlimpTest" | 528 apk_name = "BlimpTest" |
| 528 apk_under_test = ":blimp_apk" | 529 apk_under_test = ":blimp_apk" |
| 529 android_manifest = blimp_test_apk_manifest | 530 android_manifest = blimp_test_apk_manifest |
| 530 deps = [ | 531 deps = [ |
| 531 ":blimp_test_apk_manifest", | 532 ":blimp_test_apk_manifest", |
| 532 ":blimp_test_java", | 533 ":blimp_test_java", |
| 533 google_play_services_resources, | 534 google_play_services_resources, |
| 534 ] | 535 ] |
| 535 } | 536 } |
| 536 } | 537 } |
| OLD | NEW |