| OLD | NEW |
| 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", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 android_library("sync_javatests") { | 36 android_library("sync_javatests") { |
| 37 testonly = true | 37 testonly = true |
| 38 deps = [ | 38 deps = [ |
| 39 ":sync_java", | 39 ":sync_java", |
| 40 "//base:base_java", | 40 "//base:base_java", |
| 41 "//base:base_java_test_support", | 41 "//base:base_java_test_support", |
| 42 "//components/signin/core/browser/android:java", | 42 "//components/signin/core/browser/android:java", |
| 43 "//components/signin/core/browser/android:signin_java_test_support", | 43 "//components/signin/core/browser/android:signin_java_test_support", |
| 44 "//components/sync:sync_java_test_support", | 44 "//components/sync:sync_java_test_support", |
| 45 "//third_party/android_support_test_runner:runner_java", |
| 45 "//third_party/cacheinvalidation:cacheinvalidation_javalib", | 46 "//third_party/cacheinvalidation:cacheinvalidation_javalib", |
| 46 "//third_party/cacheinvalidation:cacheinvalidation_proto_java", | 47 "//third_party/cacheinvalidation:cacheinvalidation_proto_java", |
| 47 "//third_party/jsr-305:jsr_305_javalib", | 48 "//third_party/jsr-305:jsr_305_javalib", |
| 48 ] | 49 ] |
| 49 java_files = [ | 50 java_files = [ |
| 50 "javatests/src/org/chromium/components/sync/AndroidSyncSettingsTest.java", | 51 "javatests/src/org/chromium/components/sync/AndroidSyncSettingsTest.java", |
| 51 "javatests/src/org/chromium/components/sync/notifier/InvalidationClientNameP
roviderTest.java", | 52 "javatests/src/org/chromium/components/sync/notifier/InvalidationClientNameP
roviderTest.java", |
| 52 "javatests/src/org/chromium/components/sync/notifier/InvalidationPreferences
Test.java", | 53 "javatests/src/org/chromium/components/sync/notifier/InvalidationPreferences
Test.java", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 | 56 |
| 56 java_cpp_enum("java_enums") { | 57 java_cpp_enum("java_enums") { |
| 57 sources = [ | 58 sources = [ |
| 58 "//components/sync/base/model_type.h", | 59 "//components/sync/base/model_type.h", |
| 59 "//components/sync/base/stop_source.h", | 60 "//components/sync/base/stop_source.h", |
| 60 "//components/sync/protocol/sync_protocol_error.h", | 61 "//components/sync/protocol/sync_protocol_error.h", |
| 61 ] | 62 ] |
| 62 } | 63 } |
| 63 | 64 |
| 64 generate_jni("jni_headers") { | 65 generate_jni("jni_headers") { |
| 65 sources = [ | 66 sources = [ |
| 66 "java/src/org/chromium/components/sync/ModelTypeHelper.java", | 67 "java/src/org/chromium/components/sync/ModelTypeHelper.java", |
| 67 ] | 68 ] |
| 68 jni_package = "syncer" | 69 jni_package = "syncer" |
| 69 } | 70 } |
| OLD | NEW |