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

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

Issue 1501463003: [Blimp Net] Client sends START_CONNECTION message (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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 | « no previous file | blimp/common/protocol_version.h » ('j') | blimp/common/protocol_version.cc » ('J')
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_common") { 7 component("blimp_common") {
8 sources = [ 8 sources = [
9 "blimp_common_export.h", 9 "blimp_common_export.h",
10 "compositor/blimp_task_graph_runner.cc", 10 "compositor/blimp_task_graph_runner.cc",
11 "compositor/blimp_task_graph_runner.h", 11 "compositor/blimp_task_graph_runner.h",
12 "create_blimp_message.cc", 12 "create_blimp_message.cc",
13 "create_blimp_message.h", 13 "create_blimp_message.h",
14 "protocol_version.cc",
15 "protocol_version.h",
14 ] 16 ]
15 17
16 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 18 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
17 19
18 deps = [ 20 deps = [
19 "//base", 21 "//base",
20 "//blimp/common/proto", 22 "//blimp/common/proto",
21 "//cc", 23 "//cc",
22 "//skia", 24 "//skia",
23 "//ui/gfx/geometry", 25 "//ui/gfx/geometry",
24 "//ui/gl", 26 "//ui/gl",
25 ] 27 ]
26 } 28 }
27 29
28 source_set("unit_tests") { 30 source_set("unit_tests") {
29 testonly = true 31 testonly = true
30 32
31 sources = [ 33 sources = [
32 "create_blimp_message_unittest.cc", 34 "create_blimp_message_unittest.cc",
33 ] 35 ]
34 36
35 deps = [ 37 deps = [
36 ":blimp_common", 38 ":blimp_common",
37 "//blimp/common/proto", 39 "//blimp/common/proto",
38 "//testing/gtest", 40 "//testing/gtest",
39 ] 41 ]
40 } 42 }
OLDNEW
« no previous file with comments | « no previous file | blimp/common/protocol_version.h » ('j') | blimp/common/protocol_version.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698