OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("cpp") { |
| 6 sources = [ |
| 7 "access_token_store.h", |
| 8 "geolocation_delegate.cc", |
| 9 "geolocation_delegate.h", |
| 10 "geolocation_export.h", |
| 11 "geolocation_provider.h", |
| 12 "geolocation_service_context.h", |
| 13 "geoposition.cc", |
| 14 "geoposition.h", |
| 15 "location_provider.h", |
| 16 ] |
| 17 |
| 18 deps = [ |
| 19 "//base", |
| 20 "//net", |
| 21 "//third_party/WebKit/public:mojo_bindings", |
| 22 "//url", |
| 23 ] |
| 24 } |
OLD | NEW |