OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |