Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: blimp/client/BUILD.gn

Issue 2161223003: Adds GeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@engine_feature_prep
Patch Set: Makes UnexpectedMessage test work outside of debug Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | blimp/client/feature/DEPS » ('j') | blimp/client/feature/DEPS » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "core/contents/tab_control_feature.cc", 94 "core/contents/tab_control_feature.cc",
95 "core/contents/tab_control_feature.h", 95 "core/contents/tab_control_feature.h",
96 "feature/geolocation_feature.cc",
97 "feature/geolocation_feature.h",
96 "feature/ime_feature.cc", 98 "feature/ime_feature.cc",
97 "feature/ime_feature.h", 99 "feature/ime_feature.h",
98 "feature/render_widget_feature.cc", 100 "feature/render_widget_feature.cc",
99 "feature/render_widget_feature.h", 101 "feature/render_widget_feature.h",
100 "feature/settings_feature.cc", 102 "feature/settings_feature.cc",
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",
Kevin M 2016/08/15 20:35:40 Hm, this target should probably be named "geolocat
CJ 2016/08/15 21:59:31 yeah I agree. Not sure why it was made like that.
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",
128 "feature/mock_render_widget_feature_delegate.cc", 131 "feature/mock_render_widget_feature_delegate.cc",
129 "feature/mock_render_widget_feature_delegate.h", 132 "feature/mock_render_widget_feature_delegate.h",
130 "session/test_client_session.cc", 133 "session/test_client_session.cc",
131 "session/test_client_session.h", 134 "session/test_client_session.h",
132 ] 135 ]
133 136
134 deps = [ 137 deps = [
135 ":session", 138 ":session",
139 "//device/geolocation:device_geolocation",
136 "//skia", 140 "//skia",
137 "//testing/gmock", 141 "//testing/gmock",
138 "//url", 142 "//url",
139 ] 143 ]
140 } 144 }
141 145
142 source_set("compositor") { 146 source_set("compositor") {
143 sources = [ 147 sources = [
144 "feature/compositor/blimp_compositor.cc", 148 "feature/compositor/blimp_compositor.cc",
145 "feature/compositor/blimp_compositor.h", 149 "feature/compositor/blimp_compositor.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 "core/contents/tab_control_feature_unittest.cc", 203 "core/contents/tab_control_feature_unittest.cc",
200 "feature/compositor/blimp_compositor_manager_unittest.cc", 204 "feature/compositor/blimp_compositor_manager_unittest.cc",
205 "feature/geolocation_feature_unittest.cc",
201 "feature/render_widget_feature_unittest.cc", 206 "feature/render_widget_feature_unittest.cc",
202 ] 207 ]
203 208
204 deps = [ 209 deps = [
205 ":compositor", 210 ":compositor",
206 ":test_support", 211 ":test_support",
207 "//base", 212 "//base",
208 "//base/test:test_support", 213 "//base/test:test_support",
209 "//blimp/client/core/compositor", 214 "//blimp/client/core/compositor",
210 "//blimp/common", 215 "//blimp/common",
211 "//blimp/common/proto", 216 "//blimp/common/proto",
212 "//blimp/net", 217 "//blimp/net",
213 "//blimp/net:test_support", 218 "//blimp/net:test_support",
214 "//blimp/test:support", 219 "//blimp/test:support",
215 "//cc/proto", 220 "//cc/proto",
221 "//device/geolocation:device_geolocation",
222 "//device/geolocation:unittests",
216 "//net", 223 "//net",
217 "//net:test_support", 224 "//net:test_support",
218 "//skia", 225 "//skia",
219 "//testing/gmock", 226 "//testing/gmock",
220 "//testing/gtest", 227 "//testing/gtest",
221 "//ui/events:gesture_detection", 228 "//ui/events:gesture_detection",
222 "//ui/gfx/geometry", 229 "//ui/gfx/geometry",
223 ] 230 ]
224 231
225 if (is_linux) { 232 if (is_linux) {
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 instrumentation_test_apk("blimp_test_apk") { 488 instrumentation_test_apk("blimp_test_apk") {
482 apk_name = "BlimpTest" 489 apk_name = "BlimpTest"
483 apk_under_test = ":blimp_apk" 490 apk_under_test = ":blimp_apk"
484 android_manifest = blimp_test_apk_manifest 491 android_manifest = blimp_test_apk_manifest
485 android_manifest_dep = ":blimp_test_apk_manifest" 492 android_manifest_dep = ":blimp_test_apk_manifest"
486 deps = [ 493 deps = [
487 ":blimp_test_java", 494 ":blimp_test_java",
488 ] 495 ]
489 } 496 }
490 } 497 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/feature/DEPS » ('j') | blimp/client/feature/DEPS » ('J')

Powered by Google App Engine
This is Rietveld 408576698