| 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) { |
| 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") |
| 8 } |
| 9 |
| 5 source_set("public") { | 10 source_set("public") { |
| 6 sources = [ | 11 sources = [ |
| 7 "blimp_contents.h", | 12 "blimp_contents.h", |
| 8 "blimp_contents_observer.h", | 13 "blimp_contents_observer.h", |
| 9 "blimp_navigation_controller.h", | 14 "blimp_navigation_controller.h", |
| 10 ] | 15 ] |
| 11 | 16 |
| 12 deps = [ | 17 deps = [ |
| 13 "//base", | 18 "//base", |
| 14 "//url", | 19 "//url", |
| 15 ] | 20 ] |
| 16 } | 21 } |
| 22 |
| 23 if (is_android) { |
| 24 android_library("public_java") { |
| 25 java_files = [ |
| 26 "android/java/src/org/chromium/blimp/core_public/BlimpContents.java", |
| 27 "android/java/src/org/chromium/blimp/core_public/BlimpContentsObserver.jav
a", |
| 28 "android/java/src/org/chromium/blimp/core_public/BlimpNavigationController
.java", |
| 29 "android/java/src/org/chromium/blimp/core_public/EmptyBlimpContentsObserve
r.java", |
| 30 ] |
| 31 } |
| 32 } |
| OLD | NEW |