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

Side by Side Diff: ios/build/config.gni

Issue 1812823002: [iOS] Define global assert_no_deps and use it to prevent regressions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@components-invalidation
Patch Set: Address comments Created 4 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
« no previous file with comments | « components/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Global list of dependencies that are conceptually bad on iOS and should
6 # never be added (they will never be supported).
7 _ios_conceptually_bad_dependencies = [
8 "//cc/*",
9 "//content/*",
10 "//dbus/*",
11 "//ipc/*",
12 "//jingle/*",
13 "//media/*",
14 "//third_party/webrtc/*",
15 "//third_party/WebKit/*",
16 ]
17
18 # Global list of conceptually fine dependencies but currently unsupported
19 # on iOS. exclusions will be removed when the dependencies are fixed.
20 _ios_transient_bad_dependencies = [ "//mojo/edk/*" ]
21
22 ios_assert_no_deps =
23 _ios_conceptually_bad_dependencies + _ios_transient_bad_dependencies
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | ui/events/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698