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

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: 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 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 source_set("context") { 89 source_set("context") {
90 sources = [ 90 sources = [
91 "blimp_client_context_impl.cc", 91 "blimp_client_context_impl.cc",
92 "blimp_client_context_impl.h", 92 "blimp_client_context_impl.h",
93 ] 93 ]
94 94
95 public_deps = [ 95 public_deps = [
96 "//base", 96 "//base",
97 "//blimp/client/core/contents", 97 "//blimp/client/core/contents",
98 "//blimp/client/core/session",
98 "//blimp/client/public:public_headers", 99 "//blimp/client/public:public_headers",
99 ] 100 ]
100 101
101 if (is_android) { 102 if (is_android) {
102 sources += [ 103 sources += [
103 "android/blimp_client_context_impl_android.cc", 104 "android/blimp_client_context_impl_android.cc",
104 "android/blimp_client_context_impl_android.h", 105 "android/blimp_client_context_impl_android.h",
105 "android/blimp_jni_registrar.cc", 106 "android/blimp_jni_registrar.cc",
106 ] 107 ]
107 108
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 generate_jni("dummy_core_jni_headers") { 196 generate_jni("dummy_core_jni_headers") {
196 visibility = [ ":*" ] 197 visibility = [ ":*" ]
197 198
198 sources = [ 199 sources = [
199 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", 200 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java",
200 ] 201 ]
201 202
202 jni_package = "blimp/client/core" 203 jni_package = "blimp/client/core"
203 } 204 }
204 } 205 }
OLDNEW
« no previous file with comments | « no previous file | blimp/client/core/blimp_client_context_impl.h » ('j') | blimp/client/core/blimp_client_context_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698