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

Side by Side Diff: components/variations/android/BUILD.gn

Issue 2648383002: Revert of Fetch Finch seed during restore (Closed)
Patch Set: Created 3 years, 11 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 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/rules.gni") 5 import("//build/config/android/rules.gni")
6 6
7 android_library("variations_java") { 7 android_library("variations_java") {
8 deps = [ 8 deps = [
9 "//base:base_java", 9 "//base:base_java",
10 "//third_party/android_tools:android_support_core_utils_java", 10 "//third_party/android_tools:android_support_core_utils_java",
11 ] 11 ]
12 java_files = [ 12 java_files = [
13 "java/src/org/chromium/components/variations/VariationsAssociatedData.java", 13 "java/src/org/chromium/components/variations/VariationsAssociatedData.java",
14 "java/src/org/chromium/components/variations/firstrun/VariationsSeedBridge.j ava", 14 "java/src/org/chromium/components/variations/firstrun/VariationsSeedBridge.j ava",
15 "java/src/org/chromium/components/variations/firstrun/VariationsSeedFetcher. java", 15 "java/src/org/chromium/components/variations/firstrun/VariationsSeedService. java",
16 "java/src/org/chromium/components/variations/firstrun/VariationsSeedServiceL auncher.java",
16 ] 17 ]
17 } 18 }
18
19 junit_binary("components_variations_junit_tests") {
20 java_files = [ "junit/src/org/chromium/components/variations/firstrun/Variatio nsSeedFetcherTest.java" ]
21 deps = [
22 ":variations_java",
23 "//base:base_java",
24 "//base:base_java_test_support",
25 "//third_party/hamcrest:hamcrest_java",
26 ]
27 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698