| 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("public") { | 10 source_set("public") { |
| 11 sources = [ | 11 sources = [ |
| 12 "blimp_client_context.h", |
| 13 "blimp_client_context_delegate.h", |
| 12 "blimp_contents.h", | 14 "blimp_contents.h", |
| 13 "blimp_contents_observer.h", | 15 "blimp_contents_observer.h", |
| 14 "blimp_navigation_controller.h", | 16 "blimp_navigation_controller.h", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 21 "//components/keyed_service/core", |
| 19 "//url", | 22 "//url", |
| 20 ] | 23 ] |
| 24 |
| 25 if (is_android) { |
| 26 sources += [ "android/blimp_jni_registrar.h" ] |
| 27 } |
| 21 } | 28 } |
| 22 | 29 |
| 23 if (is_android) { | 30 if (is_android) { |
| 24 android_library("public_java") { | 31 android_library("public_java") { |
| 25 java_files = [ | 32 java_files = [ |
| 33 "android/java/src/org/chromium/blimp_public/BlimpClientContext.java", |
| 26 "android/java/src/org/chromium/blimp_public/BlimpContents.java", | 34 "android/java/src/org/chromium/blimp_public/BlimpContents.java", |
| 27 "android/java/src/org/chromium/blimp_public/BlimpContentsObserver.java", | 35 "android/java/src/org/chromium/blimp_public/BlimpContentsObserver.java", |
| 28 "android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
", | 36 "android/java/src/org/chromium/blimp_public/BlimpNavigationController.java
", |
| 29 "android/java/src/org/chromium/blimp_public/EmptyBlimpContentsObserver.jav
a", | 37 "android/java/src/org/chromium/blimp_public/EmptyBlimpContentsObserver.jav
a", |
| 30 ] | 38 ] |
| 31 } | 39 } |
| 32 } | 40 } |
| OLD | NEW |