| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 testonly = true | 111 testonly = true |
| 112 sources = [ | 112 sources = [ |
| 113 "tools/mcs_probe.cc", | 113 "tools/mcs_probe.cc", |
| 114 ] | 114 ] |
| 115 | 115 |
| 116 deps = [ | 116 deps = [ |
| 117 ":gcm", | 117 ":gcm", |
| 118 ":test_support", | 118 ":test_support", |
| 119 "//base", | 119 "//base", |
| 120 "//build/config/sanitizers:deps", | 120 "//build/config/sanitizers:deps", |
| 121 "//build/win:default_exe_manifest", |
| 121 "//net", | 122 "//net", |
| 122 "//net:test_support", | 123 "//net:test_support", |
| 123 "//third_party/protobuf:protobuf_lite", | 124 "//third_party/protobuf:protobuf_lite", |
| 124 ] | 125 ] |
| 125 } | 126 } |
| 126 } | 127 } |
| 127 | 128 |
| 128 test("gcm_unit_tests") { | 129 test("gcm_unit_tests") { |
| 129 sources = [ | 130 sources = [ |
| 130 "base/mcs_message_unittest.cc", | 131 "base/mcs_message_unittest.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 148 ":gcm", | 149 ":gcm", |
| 149 ":test_support", | 150 ":test_support", |
| 150 "//base", | 151 "//base", |
| 151 "//base/test:run_all_unittests", | 152 "//base/test:run_all_unittests", |
| 152 "//net", | 153 "//net", |
| 153 "//net:test_support", | 154 "//net:test_support", |
| 154 "//testing/gtest", | 155 "//testing/gtest", |
| 155 "//third_party/protobuf:protobuf_lite", | 156 "//third_party/protobuf:protobuf_lite", |
| 156 ] | 157 ] |
| 157 } | 158 } |
| OLD | NEW |