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

Side by Side Diff: sync/android/BUILD.gn

Issue 1440363002: Use GoogleAuthUtil's getToken instead of AccountManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 7
8 android_library("sync_java") { 8 android_library("sync_java") {
9 deps = [ 9 deps = [
10 "//base:base_java", 10 "//base:base_java",
11 "//net/android:net_java", 11 "//net/android:net_java",
12 "//third_party/cacheinvalidation:cacheinvalidation_javalib", 12 "//third_party/cacheinvalidation:cacheinvalidation_javalib",
13 "//third_party/cacheinvalidation:cacheinvalidation_proto_java", 13 "//third_party/cacheinvalidation:cacheinvalidation_proto_java",
14 "//third_party/jsr-305:jsr_305_javalib", 14 "//third_party/jsr-305:jsr_305_javalib",
15 "//third_party/android_tools:android_gcm_java", 15 "//third_party/android_tools:android_gcm_java",
16 google_play_services_library,
16 ] 17 ]
17 srcjar_deps = [ ":java_enums" ] 18 srcjar_deps = [ ":java_enums" ]
18 DEPRECATED_java_in_dir = "java/src" 19 DEPRECATED_java_in_dir = "java/src"
19 } 20 }
20 21
21 android_library("sync_javatests") { 22 android_library("sync_javatests") {
22 testonly = true 23 testonly = true
23 deps = [ 24 deps = [
24 ":sync_java", 25 ":sync_java",
25 "//base:base_java", 26 "//base:base_java",
(...skipping 12 matching lines...) Expand all
38 "//sync/internal_api/public/base/model_type.h", 39 "//sync/internal_api/public/base/model_type.h",
39 ] 40 ]
40 } 41 }
41 42
42 generate_jni("jni_headers") { 43 generate_jni("jni_headers") {
43 sources = [ 44 sources = [
44 "java/src/org/chromium/sync/ModelTypeHelper.java", 45 "java/src/org/chromium/sync/ModelTypeHelper.java",
45 ] 46 ]
46 jni_package = "syncer" 47 jni_package = "syncer"
47 } 48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698