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