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", |
+ ] |
+} |