forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Constrict DEPS so //content/ can't add further dependencies on ozone.
Under --mus and --mash, the code in //content/ can't access the raw ozone devices. It appears the most of the uses of ozone aren't used in mus builds anyway. Further constrain DEPS so new instances can't be added. Bug: 734668 Change-Id: I5b8661aa4c000a58602ffce0e6f3e9cf35cff87e Reviewed-on: https://chromium-review.googlesource.com/617591 Reviewed-by: Scott Violet <sky@chromium.org> Commit-Queue: Elliot Glaysher <erg@chromium.org> Cr-Commit-Position: refs/heads/master@{#495228}
- Loading branch information
Showing
8 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# TODO(crbug.com/734668): Dependencies on ozone should be removed, as content | ||
# embedded in mus won't be able to talk to the native ozone. | ||
specific_include_rules = { | ||
"gpu_data_manager_impl_private\.cc": [ | ||
"+ui/ozone/public/ozone_switches.h", | ||
], | ||
"gpu_process_host\.cc": [ | ||
"+ui/ozone/public", | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
include_rules = [ | ||
"+third_party/WebKit/public/platform", | ||
] | ||
|
||
specific_include_rules = { | ||
# TODO(crbug.com/734668): Dependencies on ozone should be removed, as content | ||
# embedded in mus won't be able to talk to the native ozone. | ||
"webcursor_ozone.cc": [ | ||
"+ui/ozone/public/cursor_factory_ozone.h", | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters