Index: blimp/common/net/BUILD.gn |
diff --git a/blimp/common/net/BUILD.gn b/blimp/common/net/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9abbfaed78eef03bba13d3a43569b635858a13d6 |
--- /dev/null |
+++ b/blimp/common/net/BUILD.gn |
@@ -0,0 +1,28 @@ |
+# Copyright 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+import("//testing/test.gni") |
+ |
+static_library("net") { |
+ sources = [ |
+ "message_dispatcher.cc", |
+ "message_dispatcher.h", |
+ ] |
+ public_deps = [ |
+ "../proto", |
+ ] |
+} |
+ |
+test("blimp_net_unit_tests") { |
+ sources = [ |
+ "message_dispatcher_unittest.cc", |
+ ] |
+ deps = [ |
+ ":net", |
+ "//base", |
+ "//base/test:test_support", |
+ "//base/test:run_all_unittests", |
+ "//testing/gmock", |
+ ] |
+} |