summaryrefslogtreecommitdiff
path: root/chromium/ios/build/config.gni
blob: db6a35518c57892d6b18845ac26bb3c42d14cbbc (plain)
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
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

# Global list of dependencies that are conceptually bad on iOS and should
# never be added (they will never be supported).
_ios_conceptually_bad_dependencies = [
  "//cc/*",
  "//content/*",
  "//dbus/*",
  "//jingle:jingle",
  "//media/*",
  "//third_party/blink/*",
  "//third_party/ffmpeg/*",
  "//third_party/hunspell_dictionaries/*",
  "//third_party/webgl/*",
  "//third_party/webrtc:webrtc",
]

# Global list of conceptually fine dependencies but currently unsupported
# on iOS. Exclusions will be removed when the dependencies are fixed.
_ios_transient_bad_dependencies = []

# Global list of dependencies that should never be added to extensions.
ios_extension_assert_no_deps = [
  "//ios/chrome/browser",
  "//ios/chrome/browser/*",
]

ios_assert_no_deps =
    _ios_conceptually_bad_dependencies + _ios_transient_bad_dependencies