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

Side by Side Diff: blimp/net/BUILD.gn

Issue 1403083002: [Blimp] Adds Blimp EngineSession and ClientSession skeleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « blimp/engine/ui/blimp_screen.cc ('k') | blimp/net/blimp_client_session.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 6
7 component("blimp_net") { 7 component("blimp_net") {
8 sources = [ 8 sources = [
9 "blimp_client_session.cc",
10 "blimp_client_session.h",
9 "blimp_message_dispatcher.cc", 11 "blimp_message_dispatcher.cc",
10 "blimp_message_dispatcher.h", 12 "blimp_message_dispatcher.h",
11 "blimp_message_receiver.h", 13 "blimp_message_receiver.h",
12 "blimp_net_export.h", 14 "blimp_net_export.h",
13 ] 15 ]
14 16
15 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] 17 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ]
16 18
17 deps = [ 19 deps = [
18 "//base", 20 "//base",
(...skipping 20 matching lines...) Expand all
39 } 41 }
40 42
41 # TODO(GYP): Delete this after we've converted everything to GN. 43 # TODO(GYP): Delete this after we've converted everything to GN.
42 # # The _run targets exist only for compatibility w/ GYP. 44 # # The _run targets exist only for compatibility w/ GYP.
43 group("blimp_net_tests_run") { 45 group("blimp_net_tests_run") {
44 testonly = true 46 testonly = true
45 deps = [ 47 deps = [
46 ":blimp_net_tests", 48 ":blimp_net_tests",
47 ] 49 ]
48 } 50 }
OLDNEW
« no previous file with comments | « blimp/engine/ui/blimp_screen.cc ('k') | blimp/net/blimp_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698