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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 ":client", | 83 ":client", |
84 "//base", | 84 "//base", |
85 "//base/test:test_support", | 85 "//base/test:test_support", |
86 "//testing/gmock", | 86 "//testing/gmock", |
87 "//testing/gtest", | 87 "//testing/gtest", |
88 ] | 88 ] |
89 } | 89 } |
90 | 90 |
91 source_set("feature") { | 91 source_set("feature") { |
92 sources = [ | 92 sources = [ |
| 93 "feature/geolocation_feature.cc", |
| 94 "feature/geolocation_feature.h", |
93 "feature/ime_feature.cc", | 95 "feature/ime_feature.cc", |
94 "feature/ime_feature.h", | 96 "feature/ime_feature.h", |
95 "feature/navigation_feature.cc", | 97 "feature/navigation_feature.cc", |
96 "feature/navigation_feature.h", | 98 "feature/navigation_feature.h", |
97 "feature/render_widget_feature.cc", | 99 "feature/render_widget_feature.cc", |
98 "feature/render_widget_feature.h", | 100 "feature/render_widget_feature.h", |
99 "feature/settings_feature.cc", | 101 "feature/settings_feature.cc", |
100 "feature/settings_feature.h", | 102 "feature/settings_feature.h", |
101 "feature/tab_control_feature.cc", | 103 "feature/tab_control_feature.cc", |
102 "feature/tab_control_feature.h", | 104 "feature/tab_control_feature.h", |
(...skipping 16 matching lines...) Expand all Loading... |
119 "//blimp/common/proto", | 121 "//blimp/common/proto", |
120 ] | 122 ] |
121 } | 123 } |
122 | 124 |
123 source_set("test_support") { | 125 source_set("test_support") { |
124 testonly = true | 126 testonly = true |
125 | 127 |
126 sources = [ | 128 sources = [ |
127 "feature/mock_ime_feature_delegate.cc", | 129 "feature/mock_ime_feature_delegate.cc", |
128 "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", |
129 "feature/mock_navigation_feature_delegate.cc", | 133 "feature/mock_navigation_feature_delegate.cc", |
130 "feature/mock_navigation_feature_delegate.h", | 134 "feature/mock_navigation_feature_delegate.h", |
131 "feature/mock_render_widget_feature_delegate.cc", | 135 "feature/mock_render_widget_feature_delegate.cc", |
132 "feature/mock_render_widget_feature_delegate.h", | 136 "feature/mock_render_widget_feature_delegate.h", |
133 "session/test_client_session.cc", | 137 "session/test_client_session.cc", |
134 "session/test_client_session.h", | 138 "session/test_client_session.h", |
135 ] | 139 ] |
136 | 140 |
137 deps = [ | 141 deps = [ |
138 ":session", | 142 ":session", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 "//blimp/common/proto", | 194 "//blimp/common/proto", |
191 "//skia", | 195 "//skia", |
192 ] | 196 ] |
193 } | 197 } |
194 | 198 |
195 source_set("feature_unit_tests") { | 199 source_set("feature_unit_tests") { |
196 testonly = true | 200 testonly = true |
197 | 201 |
198 sources = [ | 202 sources = [ |
199 "feature/compositor/blimp_compositor_manager_unittest.cc", | 203 "feature/compositor/blimp_compositor_manager_unittest.cc", |
| 204 "feature/geolocation_feature_unittest.cc", |
200 "feature/navigation_feature_unittest.cc", | 205 "feature/navigation_feature_unittest.cc", |
201 "feature/render_widget_feature_unittest.cc", | 206 "feature/render_widget_feature_unittest.cc", |
202 "feature/tab_control_feature_unittest.cc", | 207 "feature/tab_control_feature_unittest.cc", |
203 ] | 208 ] |
204 | 209 |
205 deps = [ | 210 deps = [ |
206 ":compositor", | 211 ":compositor", |
207 ":test_support", | 212 ":test_support", |
208 "//base", | 213 "//base", |
209 "//base/test:test_support", | 214 "//base/test:test_support", |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 instrumentation_test_apk("blimp_test_apk") { | 485 instrumentation_test_apk("blimp_test_apk") { |
481 apk_name = "BlimpTest" | 486 apk_name = "BlimpTest" |
482 apk_under_test = ":blimp_apk" | 487 apk_under_test = ":blimp_apk" |
483 android_manifest = blimp_test_apk_manifest | 488 android_manifest = blimp_test_apk_manifest |
484 android_manifest_dep = ":blimp_test_apk_manifest" | 489 android_manifest_dep = ":blimp_test_apk_manifest" |
485 deps = [ | 490 deps = [ |
486 ":blimp_test_java", | 491 ":blimp_test_java", |
487 ] | 492 ] |
488 } | 493 } |
489 } | 494 } |
OLD | NEW |