| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |