| 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 import("//tools/grit/repack.gni") | 6 import("//tools/grit/repack.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 | 27 |
| 28 public_deps = [ | 28 public_deps = [ |
| 29 ":session", | 29 ":session", |
| 30 "//blimp/client/core/compositor", | 30 "//blimp/client/core/compositor", |
| 31 "//blimp/client/core/switches", | 31 "//blimp/client/core/switches", |
| 32 "//blimp/client/support", | 32 "//blimp/client/support", |
| 33 "//cc", | 33 "//cc", |
| 34 "//cc/surfaces", | 34 "//cc/surfaces", |
| 35 "//components/safe_json", | 35 "//components/safe_json", |
| 36 "//components/url_formatter", | 36 "//components/url_formatter", |
| 37 "//gpu/ipc/common", |
| 37 "//skia", | 38 "//skia", |
| 38 "//ui/events", | 39 "//ui/events", |
| 39 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 deps = [ | 43 deps = [ |
| 43 "//base", | 44 "//base", |
| 44 "//blimp/client/core", | 45 "//blimp/client/core", |
| 45 "//blimp/client/public:public_headers", | 46 "//blimp/client/public:public_headers", |
| 46 "//blimp/client/support", | 47 "//blimp/client/support", |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 instrumentation_test_apk("blimp_test_apk") { | 417 instrumentation_test_apk("blimp_test_apk") { |
| 417 apk_name = "BlimpTest" | 418 apk_name = "BlimpTest" |
| 418 apk_under_test = ":blimp_apk" | 419 apk_under_test = ":blimp_apk" |
| 419 android_manifest = blimp_test_apk_manifest | 420 android_manifest = blimp_test_apk_manifest |
| 420 android_manifest_dep = ":blimp_test_apk_manifest" | 421 android_manifest_dep = ":blimp_test_apk_manifest" |
| 421 deps = [ | 422 deps = [ |
| 422 ":blimp_test_java", | 423 ":blimp_test_java", |
| 423 ] | 424 ] |
| 424 } | 425 } |
| 425 } | 426 } |
| OLD | NEW |