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

Side by Side Diff: services/location/BUILD.gn

Issue 1061313003: Introduce intent manager. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 8 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("//services/android/rules.gni") 5 import("//services/android/rules.gni")
6 6
7 group("location") { 7 group("location") {
8 deps = [ 8 deps = [
9 ":location_service", 9 ":location_service",
10 ] 10 ]
11 } 11 }
12 12
13 mojo_android_java_application("location_service") { 13 mojo_android_java_application("location_service") {
14 sources = [ 14 sources = [
15 "src/org/chromium/services/location/LocationServiceApp.java", 15 "src/org/chromium/services/location/LocationServiceApp.java",
16 "src/org/chromium/services/location/LocationServiceImpl.java", 16 "src/org/chromium/services/location/LocationServiceImpl.java",
17 "src/org/chromium/services/location/LocationUtil.java", 17 "src/org/chromium/services/location/LocationUtil.java",
18 ] 18 ]
19 19
20 mojo_main = "org.chromium.services.location.LocationServiceApp" 20 mojo_main = "org.chromium.services.location.LocationServiceApp"
21 21
22 deps = [ 22 deps = [
23 "//mojo/public/interfaces/application:application_java", 23 "//mojo/public/interfaces/application:application_java",
24 "//mojo/public/java:application", 24 "//mojo/public/java:application",
25 "//mojo/services/location/public/interfaces:interfaces_java", 25 "//mojo/services/location/public/interfaces:interfaces_java",
26 "//services/android:bindings_java",
26 "//third_party/android_tools:google_play_services_default_java", 27 "//third_party/android_tools:google_play_services_default_java",
27 ] 28 ]
28 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698