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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "feature/settings_feature.h", | 103 "feature/settings_feature.h", |
102 ] | 104 ] |
103 | 105 |
104 deps = [ | 106 deps = [ |
105 "//base:base", | 107 "//base:base", |
106 "//blimp/common", | 108 "//blimp/common", |
107 "//blimp/net", | 109 "//blimp/net", |
108 "//cc", | 110 "//cc", |
109 "//cc/proto", | 111 "//cc/proto", |
110 "//components/url_formatter", | 112 "//components/url_formatter", |
| 113 "//device/geolocation:device_geolocation", |
111 "//net:net", | 114 "//net:net", |
112 "//skia", | 115 "//skia", |
113 "//ui/base/ime:text_input_types", | 116 "//ui/base/ime:text_input_types", |
114 "//ui/gfx/geometry:geometry", | 117 "//ui/gfx/geometry:geometry", |
115 ] | 118 ] |
116 | 119 |
117 public_deps = [ | 120 public_deps = [ |
118 "//blimp/common/proto", | 121 "//blimp/common/proto", |
119 ] | 122 ] |
120 } | 123 } |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
481 instrumentation_test_apk("blimp_test_apk") { | 484 instrumentation_test_apk("blimp_test_apk") { |
482 apk_name = "BlimpTest" | 485 apk_name = "BlimpTest" |
483 apk_under_test = ":blimp_apk" | 486 apk_under_test = ":blimp_apk" |
484 android_manifest = blimp_test_apk_manifest | 487 android_manifest = blimp_test_apk_manifest |
485 android_manifest_dep = ":blimp_test_apk_manifest" | 488 android_manifest_dep = ":blimp_test_apk_manifest" |
486 deps = [ | 489 deps = [ |
487 ":blimp_test_java", | 490 ":blimp_test_java", |
488 ] | 491 ] |
489 } | 492 } |
490 } | 493 } |
OLD | NEW |