forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDEPS
51 lines (44 loc) · 1.75 KB
/
DEPS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
include_rules = [
"+crypto",
"+ios/shared/chrome/common",
"+ios/third_party",
"+net",
"+services/network/test",
"+services/network/public/cpp",
"+sql",
"+ui/base",
"+ui/gfx",
# Only parts of skia are compiled on iOS, so we explicitly list the
# files that can be included to avoid bringing in more code.
"+skia/ext/skia_utils_ios.h",
"+third_party/skia/include/core/SkBitmap.h",
"+third_party/skia/include/core/SkColor.h",
"+third_party/skia/include/core/SkGraphics.h",
# The subdirectories in ios/chrome/ will manually allow their own include
# directories in ios/chrome/ so we disallow all of them.
"-ios/chrome",
"+ios/chrome/common",
"+ios/chrome/test",
"+ios/web/common",
"+ios/web/public",
# Chrome cannot use any ios/web APIs inside ios/web/public that are
# designed only for ios/web_view.
"-ios/web/public/web_view_only",
# All code in ios/chrome assumes that web::BrowserState* can be safely
# casted to ChromeBrowserState*. This mean that no code should use
# web::TestBrowserState in ios/chrome.
"-ios/web/public/test/fakes/test_browser_state.h",
# Disallow direct uses of libraries that compose MaterialComponents.
"+ios/third_party/material_components_ios",
"-ios/third_party/material_font_disk_loader_ios",
"-ios/third_party/material_internationalization_ios",
"-ios/third_party/material_roboto_font_loader_ios",
"-ios/third_party/material_sprited_animation_view_ios",
"-ios/third_party/material_text_accessibility_ios",
"-ios/third_party/motion_animator_objc",
"-ios/third_party/motion_interchange_objc",
"-ios/third_party/motion_transitioning_objc",
# web::HttpServer is deprecated in favor of net::EmbeddedTestServer.
# See crbug.com/891834.
"-ios/web/public/test/http_server",
]