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

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

Issue 2058263002: Tied up BlimpNavigationController to NavigationFeature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_core
Patch Set: Hooked up the Java layer 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) { 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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698