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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 ":client", | 84 ":client", |
85 "//base", | 85 "//base", |
86 "//base/test:test_support", | 86 "//base/test:test_support", |
87 "//testing/gmock", | 87 "//testing/gmock", |
88 "//testing/gtest", | 88 "//testing/gtest", |
89 ] | 89 ] |
90 } | 90 } |
91 | 91 |
92 source_set("feature") { | 92 source_set("feature") { |
93 sources = [ | 93 sources = [ |
| 94 "feature/geolocation_feature.cc", |
| 95 "feature/geolocation_feature.h", |
94 "feature/ime_feature.cc", | 96 "feature/ime_feature.cc", |
95 "feature/ime_feature.h", | 97 "feature/ime_feature.h", |
96 "feature/render_widget_feature.cc", | 98 "feature/render_widget_feature.cc", |
97 "feature/render_widget_feature.h", | 99 "feature/render_widget_feature.h", |
98 "feature/settings_feature.cc", | 100 "feature/settings_feature.cc", |
99 "feature/settings_feature.h", | 101 "feature/settings_feature.h", |
100 "feature/tab_control_feature.cc", | 102 "feature/tab_control_feature.cc", |
101 "feature/tab_control_feature.h", | 103 "feature/tab_control_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", |
| 112 "//device/geolocation", |
110 "//components/url_formatter", | 113 "//components/url_formatter", |
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 } |
121 | 124 |
122 source_set("test_support") { | 125 source_set("test_support") { |
123 testonly = true | 126 testonly = true |
124 | 127 |
125 sources = [ | 128 sources = [ |
126 "feature/mock_ime_feature_delegate.cc", | 129 "feature/mock_ime_feature_delegate.cc", |
127 "feature/mock_ime_feature_delegate.h", | 130 "feature/mock_ime_feature_delegate.h", |
| 131 "feature/mock_location_provider.cc", |
| 132 "feature/mock_location_provider.h", |
128 "feature/mock_render_widget_feature_delegate.cc", | 133 "feature/mock_render_widget_feature_delegate.cc", |
129 "feature/mock_render_widget_feature_delegate.h", | 134 "feature/mock_render_widget_feature_delegate.h", |
130 "session/test_client_session.cc", | 135 "session/test_client_session.cc", |
131 "session/test_client_session.h", | 136 "session/test_client_session.h", |
132 ] | 137 ] |
133 | 138 |
134 deps = [ | 139 deps = [ |
135 ":session", | 140 ":session", |
136 "//skia", | 141 "//skia", |
137 "//testing/gmock", | 142 "//testing/gmock", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 "//blimp/common/proto", | 192 "//blimp/common/proto", |
188 "//skia", | 193 "//skia", |
189 ] | 194 ] |
190 } | 195 } |
191 | 196 |
192 source_set("feature_unit_tests") { | 197 source_set("feature_unit_tests") { |
193 testonly = true | 198 testonly = true |
194 | 199 |
195 sources = [ | 200 sources = [ |
196 "feature/compositor/blimp_compositor_manager_unittest.cc", | 201 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 202 "feature/geolocation_feature_unittest.cc", |
197 "feature/render_widget_feature_unittest.cc", | 203 "feature/render_widget_feature_unittest.cc", |
198 "feature/tab_control_feature_unittest.cc", | 204 "feature/tab_control_feature_unittest.cc", |
199 ] | 205 ] |
200 | 206 |
201 deps = [ | 207 deps = [ |
202 ":compositor", | 208 ":compositor", |
203 ":test_support", | 209 ":test_support", |
204 "//base", | 210 "//base", |
205 "//base/test:test_support", | 211 "//base/test:test_support", |
206 "//blimp/client/core/compositor", | 212 "//blimp/client/core/compositor", |
207 "//blimp/common", | 213 "//blimp/common", |
208 "//blimp/common/proto", | 214 "//blimp/common/proto", |
209 "//blimp/net", | 215 "//blimp/net", |
210 "//blimp/net:test_support", | 216 "//blimp/net:test_support", |
211 "//blimp/test:support", | 217 "//blimp/test:support", |
212 "//cc/proto", | 218 "//cc/proto", |
| 219 "//device/geolocation:device_geolocation", |
213 "//net", | 220 "//net", |
214 "//net:test_support", | 221 "//net:test_support", |
215 "//skia", | 222 "//skia", |
216 "//testing/gmock", | 223 "//testing/gmock", |
217 "//testing/gtest", | 224 "//testing/gtest", |
218 "//ui/events:gesture_detection", | 225 "//ui/events:gesture_detection", |
219 "//ui/gfx/geometry", | 226 "//ui/gfx/geometry", |
220 ] | 227 ] |
221 | 228 |
222 if (is_linux) { | 229 if (is_linux) { |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 instrumentation_test_apk("blimp_test_apk") { | 487 instrumentation_test_apk("blimp_test_apk") { |
481 apk_name = "BlimpTest" | 488 apk_name = "BlimpTest" |
482 apk_under_test = ":blimp_apk" | 489 apk_under_test = ":blimp_apk" |
483 android_manifest = blimp_test_apk_manifest | 490 android_manifest = blimp_test_apk_manifest |
484 android_manifest_dep = ":blimp_test_apk_manifest" | 491 android_manifest_dep = ":blimp_test_apk_manifest" |
485 deps = [ | 492 deps = [ |
486 ":blimp_test_java", | 493 ":blimp_test_java", |
487 ] | 494 ] |
488 } | 495 } |
489 } | 496 } |
OLD | NEW |