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

Unified Diff: device/geolocation/public/cpp/BUILD.gn

Issue 2176753003: Geolocation: move from content/browser to device/ (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 side-by-side diff with in-line comments
Download patch
Index: device/geolocation/public/cpp/BUILD.gn
diff --git a/device/geolocation/public/cpp/BUILD.gn b/device/geolocation/public/cpp/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..4c3c9e057cbb949ef7d66197936b27ea0d34e12e
--- /dev/null
+++ b/device/geolocation/public/cpp/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("cpp") {
+ sources = [
+ "access_token_store.h",
+ "geolocation_delegate.cc",
+ "geolocation_delegate.h",
+ "geolocation_export.h",
+ "geolocation_provider.h",
+ "geolocation_service_context.h",
+ "geoposition.cc",
+ "geoposition.h",
+ "location_provider.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ "//third_party/WebKit/public:mojo_bindings",
+ "//url",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698