OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
10 | 10 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 "//v8:v8", | 103 "//v8:v8", |
104 "//webkit/browser:storage", | 104 "//webkit/browser:storage", |
105 "//webkit/child", | 105 "//webkit/child", |
106 ] | 106 ] |
107 | 107 |
108 if (!is_win) { | 108 if (!is_win) { |
109 # TODO(brettw) re-enable once this compiles reliably. | 109 # TODO(brettw) re-enable once this compiles reliably. |
110 #deps += [ "//breakpad:symupload" ] | 110 #deps += [ "//breakpad:symupload" ] |
111 } | 111 } |
112 | 112 |
| 113 if (!is_ios) { |
| 114 deps += [ "//components/keyed_service/content" ] |
| 115 } |
| 116 |
113 if (is_linux) { | 117 if (is_linux) { |
114 deps += [ | 118 deps += [ |
115 "//dbus", | 119 "//dbus", |
116 "//third_party/fontconfig", | 120 "//third_party/fontconfig", |
117 "//third_party/freetype2", | 121 "//third_party/freetype2", |
118 ] | 122 ] |
119 } | 123 } |
120 | 124 |
121 if (is_win) { | 125 if (is_win) { |
122 deps += [ | 126 deps += [ |
(...skipping 10 matching lines...) Expand all Loading... |
133 | 137 |
134 if (cpu_arch == "x86" || cpu_arch == "x64") { | 138 if (cpu_arch == "x86" || cpu_arch == "x64") { |
135 # YASM is x86/x64 only. | 139 # YASM is x86/x64 only. |
136 deps += [ "//third_party/yasm($host_toolchain)" ] | 140 deps += [ "//third_party/yasm($host_toolchain)" ] |
137 } | 141 } |
138 | 142 |
139 if (is_android) { | 143 if (is_android) { |
140 deps -= [ | 144 deps -= [ |
141 "//cc", | 145 "//cc", |
142 "//content", | 146 "//content", |
| 147 "//components/keyed_service/content", # Blocked on content. |
143 "//components/user_prefs", # Blocked on content. | 148 "//components/user_prefs", # Blocked on content. |
144 "//components/visitedlink/browser", # Blocked on content. | 149 "//components/visitedlink/browser", # Blocked on content. |
145 "//components/visitedlink/common", # Blocked on content. | 150 "//components/visitedlink/common", # Blocked on content. |
146 "//extensions/common/api:extensions_api", | 151 "//extensions/common/api:extensions_api", |
147 "//pdf", # Not compiled on Android in GYP yet, either. | 152 "//pdf", # Not compiled on Android in GYP yet, either. |
148 "//ppapi:ppapi_c", | 153 "//ppapi:ppapi_c", |
149 "//sandbox", | 154 "//sandbox", |
150 "//third_party/libusb", | 155 "//third_party/libusb", |
151 | 156 |
152 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 157 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
(...skipping 15 matching lines...) Expand all Loading... |
168 ] | 173 ] |
169 } | 174 } |
170 | 175 |
171 if (use_ozone) { | 176 if (use_ozone) { |
172 deps += [ | 177 deps += [ |
173 "//ui/events/ozone:events_ozone", | 178 "//ui/events/ozone:events_ozone", |
174 "//ui/events/ozone:events_ozone_evdev", | 179 "//ui/events/ozone:events_ozone_evdev", |
175 ] | 180 ] |
176 } | 181 } |
177 } | 182 } |
OLD | NEW |