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

Unified Diff: extensions/browser/guest_view/app_view/BUILD.gn

Issue 2336843002: Decompose //extensions/browser/BUILD.gn (Closed)
Patch Set: . Created 4 years, 3 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
Index: extensions/browser/guest_view/app_view/BUILD.gn
diff --git a/components/subresource_filter/content/common/BUILD.gn b/extensions/browser/guest_view/app_view/BUILD.gn
similarity index 50%
copy from components/subresource_filter/content/common/BUILD.gn
copy to extensions/browser/guest_view/app_view/BUILD.gn
index a6aee28496abfbba30960208c28e0023af97a566..35e8b0d5327eb6b3699b946130f5f8bf3fc50594 100644
--- a/components/subresource_filter/content/common/BUILD.gn
+++ b/extensions/browser/guest_view/app_view/BUILD.gn
@@ -2,15 +2,17 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-static_library("common") {
+source_set("app_view") {
sources = [
- "subresource_filter_message_generator.cc",
- "subresource_filter_message_generator.h",
- "subresource_filter_messages.h",
+ "app_view_constants.cc",
+ "app_view_constants.h",
+ "app_view_guest.cc",
+ "app_view_guest.h",
+ "app_view_guest_delegate.cc",
+ "app_view_guest_delegate.h",
]
+
deps = [
- "//components/subresource_filter/core/common",
"//content/public/common",
- "//ipc",
]
}

Powered by Google App Engine
This is Rietveld 408576698