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

Side by Side Diff: content/shell/DEPS

Issue 877323009: Extracted media mime type checks from net/base/ into media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Build fixes #1 Created 5 years, 9 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 include_rules = [ 1 include_rules = [
2 "+gin/public", 2 "+gin/public",
3 "+v8/include", 3 "+v8/include",
4 4
5 # For chromeos build config 5 # For chromeos build config
6 "+chromeos/dbus", 6 "+chromeos/dbus",
7 "+device/bluetooth", # BluetoothAdapterFactory::Shutdown. 7 "+device/bluetooth", # BluetoothAdapterFactory::Shutdown.
8 8
9 # The content_shell is the canonical sample embedder, so it only uses 9 # The content_shell is the canonical sample embedder, so it only uses
10 # content's public API. 10 # content's public API.
11 "+content/app/strings/grit", # For generated headers 11 "+content/app/strings/grit", # For generated headers
12 "+content/public", 12 "+content/public",
13 13
14 # The content_shell is an embedder so it must work with resource bundles. 14 # The content_shell is an embedder so it must work with resource bundles.
15 "+ui/base/l10n", 15 "+ui/base/l10n",
16 "+ui/base/resource", 16 "+ui/base/resource",
17 17
18 # Shell resources 18 # Shell resources
19 "+grit/shell_resources.h", 19 "+grit/shell_resources.h",
20 20
21 # The content_shell for aura must work with the views and aura 21 # The content_shell for aura must work with the views and aura
22 "+ui/aura", 22 "+ui/aura",
23 "+ui/views", 23 "+ui/views",
24 24
25 "+components/crash", 25 "+components/crash",
26 26
27 # For enabling media related features. 27 # For enabling media related features.
28 "+media/base/media_switches.h", 28 "+media/base/media_switches.h",
29 "+media/base/mime_util.h",
29 ] 30 ]
30 31
31 specific_include_rules = { 32 specific_include_rules = {
32 "shell_views\.cc": [ 33 "shell_views\.cc": [
33 "+ui/wm/test" 34 "+ui/wm/test"
34 ], 35 ],
35 "content_browser_tests_android\.cc": [ 36 "content_browser_tests_android\.cc": [
36 "+media/base" 37 "+media/base"
37 ], 38 ],
38 # Test hook. 39 # Test hook.
39 "shell_mojo_test_utils_android\.cc": [ 40 "shell_mojo_test_utils_android\.cc": [
40 "+content/browser/mojo", 41 "+content/browser/mojo",
41 "+content/common/mojo", 42 "+content/common/mojo",
42 ], 43 ],
43 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698