| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 executable("mcs_probe") { | 115 executable("mcs_probe") { |
| 116 testonly = true | 116 testonly = true |
| 117 sources = [ | 117 sources = [ |
| 118 "tools/mcs_probe.cc", | 118 "tools/mcs_probe.cc", |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 deps = [ | 121 deps = [ |
| 122 ":gcm", | 122 ":gcm", |
| 123 ":test_support", | 123 ":test_support", |
| 124 "//base", | 124 "//base", |
| 125 "//build/config/sanitizers:deps", | 125 "//build/config:exe_and_shlib_deps", |
| 126 "//build/win:default_exe_manifest", | 126 "//build/win:default_exe_manifest", |
| 127 "//net", | 127 "//net", |
| 128 "//net:test_support", | 128 "//net:test_support", |
| 129 "//third_party/protobuf:protobuf_lite", | 129 "//third_party/protobuf:protobuf_lite", |
| 130 ] | 130 ] |
| 131 } | 131 } |
| 132 } | 132 } |
| 133 | 133 |
| 134 test("gcm_unit_tests") { | 134 test("gcm_unit_tests") { |
| 135 sources = [ | 135 sources = [ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 155 ":gcm", | 155 ":gcm", |
| 156 ":test_support", | 156 ":test_support", |
| 157 "//base", | 157 "//base", |
| 158 "//base/test:run_all_unittests", | 158 "//base/test:run_all_unittests", |
| 159 "//net", | 159 "//net", |
| 160 "//net:test_support", | 160 "//net:test_support", |
| 161 "//testing/gtest", | 161 "//testing/gtest", |
| 162 "//third_party/protobuf:protobuf_lite", | 162 "//third_party/protobuf:protobuf_lite", |
| 163 ] | 163 ] |
| 164 } | 164 } |
| OLD | NEW |