| 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 } |
| 11 | 11 |
| 12 source_set("session") { | 12 source_set("session") { |
| 13 sources = [ | 13 sources = [ |
| 14 "session/blimp_client_session.cc", | 14 "session/blimp_client_session.cc", |
| 15 "session/blimp_client_session.h", | 15 "session/blimp_client_session.h", |
| 16 ] | 16 ] |
| 17 | 17 |
| 18 public_deps = [ | 18 public_deps = [ |
| 19 ":feature", | 19 ":feature", |
| 20 "//blimp/client/core:switches", | 20 "//blimp/client/core:switches", |
| 21 "//blimp/client/core/geolocation", |
| 22 "//device/geolocation:device_geolocation", |
| 21 "//ui/events", | 23 "//ui/events", |
| 22 ] | 24 ] |
| 23 | 25 |
| 24 deps = [ | 26 deps = [ |
| 25 ":compositor", | 27 ":compositor", |
| 26 "//base", | 28 "//base", |
| 27 "//blimp/client/core/compositor", | 29 "//blimp/client/core/compositor", |
| 28 "//blimp/client/core/contents", | 30 "//blimp/client/core/contents", |
| 29 "//blimp/client/core/session", | 31 "//blimp/client/core/session", |
| 30 "//blimp/common", | 32 "//blimp/common", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "feature/settings_feature.h", | 106 "feature/settings_feature.h", |
| 105 ] | 107 ] |
| 106 | 108 |
| 107 deps = [ | 109 deps = [ |
| 108 "//base:base", | 110 "//base:base", |
| 109 "//blimp/common", | 111 "//blimp/common", |
| 110 "//blimp/net", | 112 "//blimp/net", |
| 111 "//cc", | 113 "//cc", |
| 112 "//cc/proto", | 114 "//cc/proto", |
| 113 "//components/url_formatter", | 115 "//components/url_formatter", |
| 116 "//device/geolocation:device_geolocation", |
| 114 "//net:net", | 117 "//net:net", |
| 115 "//skia", | 118 "//skia", |
| 116 "//ui/gfx/geometry:geometry", | 119 "//ui/gfx/geometry:geometry", |
| 117 ] | 120 ] |
| 118 | 121 |
| 119 public_deps = [ | 122 public_deps = [ |
| 120 "//blimp/common/proto", | 123 "//blimp/common/proto", |
| 121 ] | 124 ] |
| 122 } | 125 } |
| 123 | 126 |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 instrumentation_test_apk("blimp_test_apk") { | 491 instrumentation_test_apk("blimp_test_apk") { |
| 489 apk_name = "BlimpTest" | 492 apk_name = "BlimpTest" |
| 490 apk_under_test = ":blimp_apk" | 493 apk_under_test = ":blimp_apk" |
| 491 android_manifest = blimp_test_apk_manifest | 494 android_manifest = blimp_test_apk_manifest |
| 492 android_manifest_dep = ":blimp_test_apk_manifest" | 495 android_manifest_dep = ":blimp_test_apk_manifest" |
| 493 deps = [ | 496 deps = [ |
| 494 ":blimp_test_java", | 497 ":blimp_test_java", |
| 495 ] | 498 ] |
| 496 } | 499 } |
| 497 } | 500 } |
| OLD | NEW |