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

Side by Side Diff: blimp/client/core/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: Updated comments and changed test to use a testing::Test class 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
« no previous file with comments | « no previous file | blimp/client/core/blimp_client_context_impl.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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/android/rules.gni") 7 import("//build/config/android/rules.gni")
8 } 8 }
9 9
10 declare_args() { 10 declare_args() {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 "blimp_client_context_impl_unittest.cc", 75 "blimp_client_context_impl_unittest.cc",
76 ] 76 ]
77 77
78 deps = [ 78 deps = [
79 ":context", 79 ":context",
80 "//blimp/client/core/compositor:unit_tests", 80 "//blimp/client/core/compositor:unit_tests",
81 "//blimp/client/core/contents:unit_tests", 81 "//blimp/client/core/contents:unit_tests",
82 "//blimp/client/core/session:unit_tests", 82 "//blimp/client/core/session:unit_tests",
83 "//blimp/client/public:public_headers", 83 "//blimp/client/public:public_headers",
84 "//blimp/client/test", 84 "//blimp/client/test",
85 "//testing/gmock",
85 "//testing/gtest", 86 "//testing/gtest",
86 ] 87 ]
87 } 88 }
88 89
89 source_set("context") { 90 source_set("context") {
90 sources = [ 91 sources = [
91 "blimp_client_context_impl.cc", 92 "blimp_client_context_impl.cc",
92 "blimp_client_context_impl.h", 93 "blimp_client_context_impl.h",
93 ] 94 ]
94 95
95 public_deps = [ 96 public_deps = [
96 "//base", 97 "//base",
97 "//blimp/client/core/contents", 98 "//blimp/client/core/contents",
99 "//blimp/client/core/session",
98 "//blimp/client/public:public_headers", 100 "//blimp/client/public:public_headers",
99 ] 101 ]
100 102
101 if (is_android) { 103 if (is_android) {
102 sources += [ 104 sources += [
103 "android/blimp_client_context_impl_android.cc", 105 "android/blimp_client_context_impl_android.cc",
104 "android/blimp_client_context_impl_android.h", 106 "android/blimp_client_context_impl_android.h",
105 "android/blimp_jni_registrar.cc", 107 "android/blimp_jni_registrar.cc",
106 ] 108 ]
107 109
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 generate_jni("dummy_core_jni_headers") { 214 generate_jni("dummy_core_jni_headers") {
213 visibility = [ ":*" ] 215 visibility = [ ":*" ]
214 216
215 sources = [ 217 sources = [
216 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", 218 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java",
217 ] 219 ]
218 220
219 jni_package = "blimp/client/core" 221 jni_package = "blimp/client/core"
220 } 222 }
221 } 223 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/core/blimp_client_context_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698