| 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 19 matching lines...) Expand all Loading... |
| 30 "//components/safe_json", | 30 "//components/safe_json", |
| 31 "//ui/events", | 31 "//ui/events", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 ":feature", | 35 ":feature", |
| 36 "//base", | 36 "//base", |
| 37 "//blimp/common/proto", | 37 "//blimp/common/proto", |
| 38 "//blimp/net:blimp_net", | 38 "//blimp/net:blimp_net", |
| 39 "//cc", | 39 "//cc", |
| 40 "//gpu/command_buffer/client:gles2_implementation", | |
| 41 "//gpu/skia_bindings", | 40 "//gpu/skia_bindings", |
| 42 "//net", | 41 "//net", |
| 43 "//third_party/libwebp", | 42 "//third_party/libwebp", |
| 44 "//ui/gfx/geometry", | 43 "//ui/gfx/geometry", |
| 45 "//url:url", | 44 "//url:url", |
| 46 ] | 45 ] |
| 47 } | 46 } |
| 48 | 47 |
| 49 source_set("blimp_client_unit_tests") { | 48 source_set("blimp_client_unit_tests") { |
| 50 testonly = true | 49 testonly = true |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 apk_name = "BlimpTest" | 407 apk_name = "BlimpTest" |
| 409 apk_under_test = ":blimp_apk" | 408 apk_under_test = ":blimp_apk" |
| 410 android_manifest = blimp_test_apk_manifest | 409 android_manifest = blimp_test_apk_manifest |
| 411 deps = [ | 410 deps = [ |
| 412 ":blimp_test_apk_manifest", | 411 ":blimp_test_apk_manifest", |
| 413 ":blimp_test_java", | 412 ":blimp_test_java", |
| 414 google_play_services_resources, | 413 google_play_services_resources, |
| 415 ] | 414 ] |
| 416 } | 415 } |
| 417 } | 416 } |
| OLD | NEW |