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

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

Issue 1447823003: Revert of Implemented clearing Java prefs after pulling variations first run seed from Java to C++ side (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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 } 7 }
8 8
9 source_set("variations") { 9 source_set("variations") {
10 sources = [ 10 sources = [
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 111
112 deps = [ 112 deps = [
113 ":variations", 113 ":variations",
114 "net", 114 "net",
115 "proto", 115 "proto",
116 "//base:prefs_test_support", 116 "//base:prefs_test_support",
117 "//base/test:test_support", 117 "//base/test:test_support",
118 "//components/compression", 118 "//components/compression",
119 "//testing/gtest", 119 "//testing/gtest",
120 ] 120 ]
121
122 if (is_android) {
123 deps += [ "//components/variations/android:variations_java" ]
124 }
125 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698