Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(676)

Unified Diff: blimp/common/net/BUILD.gn

Issue 1324263003: Blimp: create MessageDispatcher class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp-protos
Patch Set: Add unit tests; refactor BUILD.gns Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698