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

Unified Diff: extensions/renderer/bindings/DEPS

Issue 2947463002: [Extensions Bindings] Add a bindings/ subdirectory under renderer (Closed)
Patch Set: . Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/renderer/binding_access_checker_unittest.cc ('k') | extensions/renderer/bindings/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/renderer/bindings/DEPS
diff --git a/extensions/renderer/bindings/DEPS b/extensions/renderer/bindings/DEPS
new file mode 100644
index 0000000000000000000000000000000000000000..cec3540d8d65d75b110f96b9cfe4765dce8a9674
--- /dev/null
+++ b/extensions/renderer/bindings/DEPS
@@ -0,0 +1,25 @@
+include_rules = [
+ # The core bindings module is designed to be independent of the extensions
+ # system.
+ # TODO(devlin): We could move bindings to be a //component, if we wanted.
+ "-extensions/renderer",
+ "+extensions/renderer/bindings",
+
+ "-extensions/common",
+ # We allow a few specific includes around event filtering, since these are
+ # necessary for filtered listeners and do not themselves include any
+ # extensions system knowledge.
+ "+extensions/common/event_filter.h",
+ "+extensions/common/event_filtering_info.h",
+ "+extensions/common/event_matcher.h",
+ "+extensions/common/value_counter.h",
+]
+
+specific_include_rules = {
+ # Allow tests to include extensions system files. Typically, this shouldn't
+ # be necessary, but it can be useful.
+ ".*test\.(cc|h)$": [
+ "+extensions/renderer",
+ "+extensions/common",
+ ]
+}
« no previous file with comments | « extensions/renderer/binding_access_checker_unittest.cc ('k') | extensions/renderer/bindings/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698