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

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

Issue 1652573002: Update GN build files for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@presf_move
Patch Set: Created 4 years, 10 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
« no previous file with comments | « components/user_prefs/tracked/BUILD.gn ('k') | components/variations/service/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 if (is_android || is_ios) { 61 if (is_android || is_ios) {
62 sources += [ 62 sources += [
63 "variations_request_scheduler_mobile.cc", 63 "variations_request_scheduler_mobile.cc",
64 "variations_request_scheduler_mobile.h", 64 "variations_request_scheduler_mobile.h",
65 ] 65 ]
66 } 66 }
67 67
68 deps = [ 68 deps = [
69 "proto", 69 "proto",
70 "//base", 70 "//base",
71 "//base:prefs",
72 "//components/crash/core/common", 71 "//components/crash/core/common",
72 "//components/prefs",
73 "//crypto", 73 "//crypto",
74 "//third_party/mt19937ar", 74 "//third_party/mt19937ar",
75 "//third_party/protobuf:protobuf_lite", 75 "//third_party/protobuf:protobuf_lite",
76 "//third_party/zlib:compression_utils", 76 "//third_party/zlib:compression_utils",
77 ] 77 ]
78 78
79 if (is_android) { 79 if (is_android) {
80 deps += [ ":jni" ] 80 deps += [ ":jni" ]
81 } 81 }
82 } 82 }
(...skipping 28 matching lines...) Expand all
111 ] 111 ]
112 112
113 if (is_android || is_ios) { 113 if (is_android || is_ios) {
114 sources += [ "variations_request_scheduler_mobile_unittest.cc" ] 114 sources += [ "variations_request_scheduler_mobile_unittest.cc" ]
115 } 115 }
116 116
117 deps = [ 117 deps = [
118 ":variations", 118 ":variations",
119 "net", 119 "net",
120 "proto", 120 "proto",
121 "//base:prefs_test_support",
122 "//base/test:test_support", 121 "//base/test:test_support",
122 "//components/prefs:test_support",
123 "//testing/gtest", 123 "//testing/gtest",
124 "//third_party/zlib:compression_utils", 124 "//third_party/zlib:compression_utils",
125 ] 125 ]
126 } 126 }
OLDNEW
« no previous file with comments | « components/user_prefs/tracked/BUILD.gn ('k') | components/variations/service/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698