| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 generate_jni("dummy_core_jni_headers") { | 213 generate_jni("dummy_core_jni_headers") { |
| 213 visibility = [ ":*" ] | 214 visibility = [ ":*" ] |
| 214 | 215 |
| 215 sources = [ | 216 sources = [ |
| 216 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", | 217 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", |
| 217 ] | 218 ] |
| 218 | 219 |
| 219 jni_package = "blimp/client/core" | 220 jni_package = "blimp/client/core" |
| 220 } | 221 } |
| 221 } | 222 } |
| OLD | NEW |