OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//testing/test.gni") |
| 6 |
| 7 static_library("net") { |
| 8 sources = [ |
| 9 "message_dispatcher.cc", |
| 10 "message_dispatcher.h", |
| 11 ] |
| 12 public_deps = [ |
| 13 "../proto", |
| 14 ] |
| 15 } |
| 16 |
| 17 test("blimp_net_unit_tests") { |
| 18 sources = [ |
| 19 "message_dispatcher_unittest.cc", |
| 20 ] |
| 21 deps = [ |
| 22 ":net", |
| 23 "//base", |
| 24 "//base/test:test_support", |
| 25 "//base/test:run_all_unittests", |
| 26 "//testing/gmock", |
| 27 ] |
| 28 } |
OLD | NEW |