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

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

Issue 1564773002: Move components/compression to third_party/zlib/google (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix another #include... Created 4 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
« no previous file with comments | « components/variations.gypi ('k') | components/variations/DEPS » ('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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 71 "//base:prefs",
72 "//components/compression",
73 "//components/crash/core/common", 72 "//components/crash/core/common",
74 "//crypto", 73 "//crypto",
75 "//third_party/mt19937ar", 74 "//third_party/mt19937ar",
76 "//third_party/protobuf:protobuf_lite", 75 "//third_party/protobuf:protobuf_lite",
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 }
83 83
84 if (is_android) { 84 if (is_android) {
85 # GYP: //components/variations.gypi:variations_jni_headers 85 # GYP: //components/variations.gypi:variations_jni_headers
86 generate_jni("jni") { 86 generate_jni("jni") {
(...skipping 26 matching lines...) Expand all
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", 121 "//base:prefs_test_support",
122 "//base/test:test_support", 122 "//base/test:test_support",
123 "//components/compression",
124 "//testing/gtest", 123 "//testing/gtest",
124 "//third_party/zlib:compression_utils",
125 ] 125 ]
126 } 126 }
OLDNEW
« no previous file with comments | « components/variations.gypi ('k') | components/variations/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698