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

Unified Diff: blimp/client/core/contents/BUILD.gn

Issue 2387813002: Move session into //blimp/client/app and update GN files. (Closed)
Patch Set: Rebased Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/client/core/compositor/BUILD.gn ('k') | blimp/client/core/context/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/contents/BUILD.gn
diff --git a/blimp/client/core/contents/BUILD.gn b/blimp/client/core/contents/BUILD.gn
index c99394306d909cea85c48d7aea5c74a503ba28c0..d1f13676c101f65108fcdd3ad60bb6c8169eff3f 100644
--- a/blimp/client/core/contents/BUILD.gn
+++ b/blimp/client/core/contents/BUILD.gn
@@ -8,7 +8,10 @@ if (is_android) {
}
source_set("contents") {
- visibility = [ "//blimp/client/*" ]
+ visibility = [
+ "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
+ "//blimp/client/core/*",
+ ]
sources = [
"blimp_contents_impl.cc",
@@ -82,6 +85,11 @@ source_set("contents") {
}
source_set("test_support") {
+ visibility = [
+ "//blimp/engine:browser_tests", # TODO(nyquist): Remove this. See crbug/653789.
+ "//blimp/client/core/contents:unit_tests",
+ ]
+
testonly = true
sources = [
@@ -143,7 +151,10 @@ source_set("unit_tests") {
if (is_android) {
android_library("contents_java") {
- visibility = [ "//blimp/client/*" ]
+ visibility = [
+ "//blimp/client/app:*", # TODO(nyquist): Remove this. See crbug/651964.
+ "//blimp/client/core/*",
+ ]
java_files = [
"android/java/src/org/chromium/blimp/core/contents/BlimpContentsImpl.java",
@@ -156,7 +167,7 @@ if (is_android) {
deps = [
"//base:base_java",
- "//blimp/client:blimp_java_resources",
+ "//blimp/client/app:blimp_java_resources",
"//blimp/client/public:public_headers_java",
"//third_party/android_tools:android_support_v7_appcompat_java",
"//ui/android:ui_java",
« no previous file with comments | « blimp/client/core/compositor/BUILD.gn ('k') | blimp/client/core/context/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698