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 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 Loading... |
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 } |
OLD | NEW |