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

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

Issue 2190753002: Add network setup code to BlimpClientContextImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-blimp-client-session
Patch Set: Created 4 years, 4 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
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("//chrome/version.gni") 5 import("//chrome/version.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("common") { 8 component("common") {
9 output_name = "blimp_common" 9 output_name = "blimp_common"
10 sources = [ 10 sources = [
(...skipping 14 matching lines...) Expand all
25 "logging.cc", 25 "logging.cc",
26 "logging.h", 26 "logging.h",
27 "switches.cc", 27 "switches.cc",
28 "switches.h", 28 "switches.h",
29 ] 29 ]
30 30
31 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 31 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
32 32
33 deps = [ 33 deps = [
34 "//base", 34 "//base",
35 "//blimp/common/proto",
36 "//cc", 35 "//cc",
37 "//crypto", 36 "//crypto",
38 ] 37 ]
39 38
40 public_deps = [ 39 public_deps = [
41 ":protocol_version", 40 ":protocol_version",
41 "//blimp/common/proto",
42 ] 42 ]
43 } 43 }
44 44
45 source_set("test_support") { 45 source_set("test_support") {
46 testonly = true 46 testonly = true
47 47
48 sources = [ 48 sources = [
49 "blob_cache/mock_blob_cache.cc", 49 "blob_cache/mock_blob_cache.cc",
50 "blob_cache/mock_blob_cache.h", 50 "blob_cache/mock_blob_cache.h",
51 "blob_cache/test_util.cc", 51 "blob_cache/test_util.cc",
(...skipping 28 matching lines...) Expand all
80 "//crypto", 80 "//crypto",
81 "//testing/gmock", 81 "//testing/gmock",
82 "//testing/gtest", 82 "//testing/gtest",
83 ] 83 ]
84 } 84 }
85 85
86 process_version("protocol_version") { 86 process_version("protocol_version") {
87 template_file = "protocol_version.h.version" 87 template_file = "protocol_version.h.version"
88 output = "$target_gen_dir/protocol_version.h" 88 output = "$target_gen_dir/protocol_version.h"
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698