| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Global list of dependencies that are conceptually bad on iOS and should | 5 # Global list of dependencies that are conceptually bad on iOS and should |
| 6 # never be added (they will never be supported). | 6 # never be added (they will never be supported). |
| 7 _ios_conceptually_bad_dependencies = [ | 7 _ios_conceptually_bad_dependencies = [ |
| 8 "//cc/*", | 8 "//cc", |
| 9 "//cc:surfaces", |
| 9 "//content/*", | 10 "//content/*", |
| 10 "//dbus/*", | 11 "//dbus/*", |
| 11 "//jingle:jingle", | 12 "//jingle:jingle", |
| 12 "//media/*", | 13 "//media/*", |
| 13 "//third_party/ffmpeg/*", | 14 "//third_party/ffmpeg/*", |
| 14 "//third_party/hunspell_dictionaries/*", | 15 "//third_party/hunspell_dictionaries/*", |
| 15 "//third_party/webgl/*", | 16 "//third_party/webgl/*", |
| 16 "//third_party/WebKit/*", | 17 "//third_party/WebKit/*", |
| 17 "//third_party/webrtc:webrtc", | 18 "//third_party/webrtc:webrtc", |
| 18 ] | 19 ] |
| 19 | 20 |
| 20 # Global list of conceptually fine dependencies but currently unsupported | 21 # Global list of conceptually fine dependencies but currently unsupported |
| 21 # on iOS. Exclusions will be removed when the dependencies are fixed. | 22 # on iOS. Exclusions will be removed when the dependencies are fixed. |
| 22 _ios_transient_bad_dependencies = [] | 23 _ios_transient_bad_dependencies = [] |
| 23 | 24 |
| 24 ios_assert_no_deps = | 25 ios_assert_no_deps = |
| 25 _ios_conceptually_bad_dependencies + _ios_transient_bad_dependencies | 26 _ios_conceptually_bad_dependencies + _ios_transient_bad_dependencies |
| OLD | NEW |