| 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("core") { | 10 source_set("core") { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 | 45 |
| 46 sources = [ | 46 sources = [ |
| 47 "blimp_contents_impl_unittest.cc", | 47 "blimp_contents_impl_unittest.cc", |
| 48 "blimp_navigation_controller_impl_unittest.cc", | 48 "blimp_navigation_controller_impl_unittest.cc", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 deps = [ | 51 deps = [ |
| 52 "//base", | 52 "//base", |
| 53 "//blimp/client/core", | 53 "//blimp/client/core", |
| 54 "//blimp/client/core/public", | 54 "//blimp/client/core/public", |
| 55 "//testing/gmock", |
| 55 "//testing/gtest", | 56 "//testing/gtest", |
| 56 "//url", | 57 "//url", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| 60 if (is_android) { | 61 if (is_android) { |
| 61 android_library("core_java") { | 62 android_library("core_java") { |
| 62 visibility = [ "//blimp/*" ] | 63 visibility = [ "//blimp/*" ] |
| 63 | 64 |
| 64 java_files = [ | 65 java_files = [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 78 sources = [ | 79 sources = [ |
| 79 "android/java/src/org/chromium/blimp/core/BlimpContentsFactory.java", | 80 "android/java/src/org/chromium/blimp/core/BlimpContentsFactory.java", |
| 80 "android/java/src/org/chromium/blimp/core/BlimpContentsImpl.java", | 81 "android/java/src/org/chromium/blimp/core/BlimpContentsImpl.java", |
| 81 "android/java/src/org/chromium/blimp/core/BlimpContentsObserverProxy.java"
, | 82 "android/java/src/org/chromium/blimp/core/BlimpContentsObserverProxy.java"
, |
| 82 "android/java/src/org/chromium/blimp/core/BlimpNavigationControllerImpl.ja
va", | 83 "android/java/src/org/chromium/blimp/core/BlimpNavigationControllerImpl.ja
va", |
| 83 ] | 84 ] |
| 84 | 85 |
| 85 jni_package = "blimp" | 86 jni_package = "blimp" |
| 86 } | 87 } |
| 87 } | 88 } |
| OLD | NEW |