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

Side by Side 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698