Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: blimp/client/core/public/BUILD.gn

Issue 2059443002: Java versions of BlimpContents[,Observer] and BlimpNavigationController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@chrome-with-blimp
Patch Set: git merge origin/master - track master Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698