| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 component("gcm") { | 8 component("gcm") { |
| 9 sources = [ | 9 sources = [ |
| 10 "base/gcm_util.cc", | 10 "base/gcm_util.cc", |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 executable("mcs_probe") { | 109 executable("mcs_probe") { |
| 110 testonly = true | 110 testonly = true |
| 111 sources = [ | 111 sources = [ |
| 112 "tools/mcs_probe.cc", | 112 "tools/mcs_probe.cc", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 deps = [ | 115 deps = [ |
| 116 ":gcm", | 116 ":gcm", |
| 117 ":test_support", | 117 ":test_support", |
| 118 "//base", | 118 "//base", |
| 119 "//build/config/sanitizers:deps", |
| 119 "//net", | 120 "//net", |
| 120 "//net:test_support", | 121 "//net:test_support", |
| 121 "//third_party/protobuf:protobuf_lite", | 122 "//third_party/protobuf:protobuf_lite", |
| 122 ] | 123 ] |
| 123 } | 124 } |
| 124 | 125 |
| 125 # TODO(GYP): Delete this after we've converted everything to GN. | 126 # TODO(GYP): Delete this after we've converted everything to GN. |
| 126 # The _run targets exist only for compatibility w/ GYP. | 127 # The _run targets exist only for compatibility w/ GYP. |
| 127 group("gcm_unit_tests_run") { | 128 group("gcm_unit_tests_run") { |
| 128 testonly = true | 129 testonly = true |
| (...skipping 25 matching lines...) Expand all Loading... |
| 154 ":gcm", | 155 ":gcm", |
| 155 ":test_support", | 156 ":test_support", |
| 156 "//base", | 157 "//base", |
| 157 "//base/test:run_all_unittests", | 158 "//base/test:run_all_unittests", |
| 158 "//net", | 159 "//net", |
| 159 "//net:test_support", | 160 "//net:test_support", |
| 160 "//testing/gtest", | 161 "//testing/gtest", |
| 161 "//third_party/protobuf:protobuf_lite", | 162 "//third_party/protobuf:protobuf_lite", |
| 162 ] | 163 ] |
| 163 } | 164 } |
| OLD | NEW |