| 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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "//ui/gl", | 117 "//ui/gl", |
| 118 "//ui/keyboard", | 118 "//ui/keyboard", |
| 119 "//ui/native_theme", | 119 "//ui/native_theme", |
| 120 "//ui/resources", | 120 "//ui/resources", |
| 121 "//ui/snapshot", | 121 "//ui/snapshot", |
| 122 "//ui/strings", | 122 "//ui/strings", |
| 123 "//ui/surface", | 123 "//ui/surface", |
| 124 "//ui/views", | 124 "//ui/views", |
| 125 "//ui/views/controls/webview", | 125 "//ui/views/controls/webview", |
| 126 "//ui/web_dialogs", | 126 "//ui/web_dialogs", |
| 127 "//ui/wm", | |
| 128 "//url", | 127 "//url", |
| 129 "//v8:v8", | 128 "//v8:v8", |
| 130 ] | 129 ] |
| 131 | 130 |
| 132 if (!is_win) { | 131 if (!is_win) { |
| 133 deps += [ "//breakpad:symupload" ] | 132 deps += [ "//breakpad:symupload" ] |
| 134 } | 133 } |
| 135 | 134 |
| 136 if (is_linux) { | 135 if (is_linux) { |
| 137 deps += [ | 136 deps += [ |
| 138 "//dbus", | 137 "//dbus", |
| 139 "//third_party/fontconfig", | 138 "//third_party/fontconfig", |
| 140 "//third_party/freetype2", | 139 "//third_party/freetype2", |
| 141 ] | 140 ] |
| 142 } | 141 } |
| 143 | 142 |
| 144 if (use_x11) { | 143 if (use_x11) { |
| 145 deps += [ "//tools/xdisplaycheck" ] | 144 deps += [ "//tools/xdisplaycheck" ] |
| 146 } | 145 } |
| 147 | 146 |
| 147 if (use_aura) { |
| 148 deps += [ "//ui/wm" ] |
| 149 } |
| 150 |
| 148 if (is_win) { | 151 if (is_win) { |
| 149 deps += [ | 152 deps += [ |
| 150 "//ui/metro_viewer", | 153 "//ui/metro_viewer", |
| 151 ] | 154 ] |
| 152 } | 155 } |
| 153 | 156 |
| 154 if (is_win || is_mac || is_chromeos) { | 157 if (is_win || is_mac || is_chromeos) { |
| 155 # RLZ works on these platforms. | 158 # RLZ works on these platforms. |
| 156 deps += [ | 159 deps += [ |
| 157 "//rlz:rlz_lib", | 160 "//rlz:rlz_lib", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 171 "//third_party/android_tools:android_gcm_java", | 174 "//third_party/android_tools:android_gcm_java", |
| 172 "//third_party/android_tools:uiautomator_java", | 175 "//third_party/android_tools:uiautomator_java", |
| 173 "//third_party/android_tools:android_support_v13_java", | 176 "//third_party/android_tools:android_support_v13_java", |
| 174 "//third_party/android_tools:android_support_v7_appcompat_java", | 177 "//third_party/android_tools:android_support_v7_appcompat_java", |
| 175 "//third_party/android_tools:android_support_v7_mediarouter_java", | 178 "//third_party/android_tools:android_support_v7_mediarouter_java", |
| 176 "//third_party/eyesfree:eyesfree_java", | 179 "//third_party/eyesfree:eyesfree_java", |
| 177 ] | 180 ] |
| 178 | 181 |
| 179 deps -= [ | 182 deps -= [ |
| 180 "//apps", # Needs testing. | 183 "//apps", # Needs testing. |
| 181 "//cc/blink", # Blocked on blink | |
| 182 "//chrome/browser", # Blocked on content. | 184 "//chrome/browser", # Blocked on content. |
| 183 "//chrome/browser/devtools", # Blocked on content. | 185 "//chrome/browser/devtools", # Blocked on content. |
| 184 "//chrome/browser/ui", # Blocked on content. | 186 "//chrome/browser/ui", # Blocked on content. |
| 185 "//chrome/browser/ui/views", # Blocked on content. | 187 "//chrome/browser/ui/views", # Blocked on content. |
| 186 "//chrome/common", # Blocked on content. | 188 "//chrome/common", # Blocked on content. |
| 187 "//chrome/plugin", # Blocked on content. | 189 "//chrome/plugin", # Blocked on content. |
| 188 "//chrome/renderer", # Blocked on content. | 190 "//chrome/renderer", # Blocked on content. |
| 189 "//chrome/service", # Blocked on content. | 191 "//chrome/service", # Blocked on content. |
| 190 "//chrome/utility", # Blocked on content. | 192 "//chrome/utility", # Blocked on content. |
| 191 "//content", | 193 "//content/shell:content_shell", |
| 192 "//content/shell:content_shell", # Blocked on content. | |
| 193 "//content/test:test_support", # Blocked on content. | |
| 194 "//extensions/browser", | 194 "//extensions/browser", |
| 195 "//extensions/common", | 195 "//extensions/common", |
| 196 "//extensions/common/api", | 196 "//extensions/common/api", |
| 197 "//extensions/renderer", | 197 "//extensions/renderer", |
| 198 "//media/blink", # Blocked on blink | |
| 199 "//pdf", # Not compiled on Android in GYP yet, either. | 198 "//pdf", # Not compiled on Android in GYP yet, either. |
| 200 "//ppapi:ppapi_c", | 199 "//ppapi:ppapi_c", |
| 201 "//sandbox", | |
| 202 "//third_party/libusb", | 200 "//third_party/libusb", |
| 203 "//ui/keyboard", # Blocked on content. | 201 "//ui/keyboard", # Blocked on content. |
| 204 | 202 |
| 205 # Blocked on neon stuff in vp8 | |
| 206 "//third_party/WebKit/public:all_blink", | |
| 207 | |
| 208 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 203 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 209 "//third_party/libxslt", | 204 "//third_party/libxslt", |
| 210 | 205 |
| 211 # Not relevant to Android. | 206 # Not relevant to Android. |
| 212 "//ash", | 207 "//ash", |
| 213 "//tools/gn", | 208 "//tools/gn", |
| 214 "//ui/aura", | 209 "//ui/aura", |
| 215 "//ui/display", | 210 "//ui/display", |
| 216 "//ui/views", | 211 "//ui/views", |
| 217 "//ui/views/controls/webview", | 212 "//ui/views/controls/webview", |
| 218 | 213 |
| 219 # Fails on Android for unknown reasons. | 214 # Fails on Android for unknown reasons. |
| 220 "//third_party/flac", | 215 "//third_party/flac", |
| 221 "//breakpad:symupload", | 216 "//breakpad:symupload", |
| 222 | 217 |
| 223 # Not tested on Android yet: | 218 # Not tested on Android yet: |
| 224 "//google_apis/gcm", | 219 "//google_apis/gcm", |
| 225 "//remoting/client/plugin", | 220 "//remoting/client/plugin", |
| 226 "//storage/browser", | 221 "//storage/browser", |
| 227 "//third_party/cld_2", | 222 "//third_party/cld_2", |
| 228 "//third_party/libaddressinput", | 223 "//third_party/libaddressinput", |
| 229 "//third_party/ffmpeg", | 224 "//third_party/ffmpeg", |
| 230 "//ui/app_list", | 225 "//ui/app_list", |
| 231 "//ui/web_dialogs", | 226 "//ui/web_dialogs", |
| 232 "//ui/wm", | |
| 233 ] | 227 ] |
| 234 } | 228 } |
| 235 | 229 |
| 236 if (use_ozone) { | 230 if (use_ozone) { |
| 237 deps += [ | 231 deps += [ |
| 238 "//ui/ozone", | 232 "//ui/ozone", |
| 239 "//ui/ozone/demo", | 233 "//ui/ozone/demo", |
| 240 ] | 234 ] |
| 241 } | 235 } |
| 242 | 236 |
| 243 # Non-mobile builds. | 237 # Non-mobile builds. |
| 244 if (!is_android && !is_ios) { | 238 if (!is_android && !is_ios) { |
| 245 deps += [ | 239 deps += [ |
| 246 "//device/usb", | 240 "//device/usb", |
| 247 ] | 241 ] |
| 248 } | 242 } |
| 249 } | 243 } |
| OLD | NEW |