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

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

Issue 2091023006: Adds EngineGeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/sanitizers/sanitizers.gni") 7 import("//build/config/sanitizers/sanitizers.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 } 258 }
259 259
260 source_set("feature") { 260 source_set("feature") {
261 sources = [ 261 sources = [
262 "feature/engine_render_widget_feature.cc", 262 "feature/engine_render_widget_feature.cc",
263 "feature/engine_render_widget_feature.h", 263 "feature/engine_render_widget_feature.h",
264 "feature/engine_settings_feature.cc", 264 "feature/engine_settings_feature.cc",
265 "feature/engine_settings_feature.h", 265 "feature/engine_settings_feature.h",
266 "feature/geolocation/blimp_location_provider.cc", 266 "feature/geolocation/blimp_location_provider.cc",
267 "feature/geolocation/blimp_location_provider.h", 267 "feature/geolocation/blimp_location_provider.h",
268 "feature/geolocation/engine_geolocation_feature.cc",
269 "feature/geolocation/engine_geolocation_feature.h",
268 ] 270 ]
269 271
270 deps = [ 272 deps = [
271 "//base", 273 "//base",
272 "//blimp/common", 274 "//blimp/common",
273 "//blimp/common/proto", 275 "//blimp/common/proto",
274 "//blimp/engine:app_settings", 276 "//blimp/engine:app_settings",
275 "//blimp/engine:common", 277 "//blimp/engine:common",
276 "//blimp/net", 278 "//blimp/net",
277 "//content/public/browser", 279 "//content/public/browser",
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 "//content/test:test_support", 658 "//content/test:test_support",
657 "//testing/gmock", 659 "//testing/gmock",
658 "//testing/gtest", 660 "//testing/gtest",
659 ] 661 ]
660 662
661 data = [ 663 data = [
662 "data/", 664 "data/",
663 "$root_out_dir/blimp_engine.pak", 665 "$root_out_dir/blimp_engine.pak",
664 ] 666 ]
665 } 667 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698