| 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 source_set("context") { | 10 source_set("context") { |
| 11 visibility = [ | 11 visibility = [ |
| 12 ":unit_tests", | 12 ":unit_tests", |
| 13 "//blimp/client/app:session", # TODO(nyquist): Remove this. See crbug/65196
4. | |
| 14 "//blimp/client/core", | 13 "//blimp/client/core", |
| 15 "//blimp/client/core/integration_tests", | 14 "//blimp/client/core/integration_tests", |
| 16 "//blimp/engine:browser_tests", # TODO(nyquist): Remove this. See crbug/653
789. | 15 "//blimp/engine:browser_tests", # TODO(nyquist): Remove this. See crbug/653
789. |
| 17 ] | 16 ] |
| 18 | 17 |
| 19 sources = [ | 18 sources = [ |
| 20 "assignment_fetcher.cc", | 19 "assignment_fetcher.cc", |
| 21 "assignment_fetcher.h", | 20 "assignment_fetcher.h", |
| 22 "blimp_client_context_impl.cc", | 21 "blimp_client_context_impl.cc", |
| 23 "blimp_client_context_impl.h", | 22 "blimp_client_context_impl.h", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 generate_jni("dummy_context_jni_headers") { | 142 generate_jni("dummy_context_jni_headers") { |
| 144 visibility = [ ":*" ] | 143 visibility = [ ":*" ] |
| 145 | 144 |
| 146 sources = [ | 145 sources = [ |
| 147 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", | 146 "android/java/src/org/chromium/blimp/core/DummyBlimpClientContext.java", |
| 148 ] | 147 ] |
| 149 | 148 |
| 150 jni_package = "blimp/client/core" | 149 jni_package = "blimp/client/core" |
| 151 } | 150 } |
| 152 } | 151 } |
| OLD | NEW |