Chromium Code Reviews| 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 30 matching lines...) Expand all Loading... | |
| 41 "//extensions/common/api", | 41 "//extensions/common/api", |
| 42 "//extensions/renderer", | 42 "//extensions/renderer", |
| 43 "//gin", | 43 "//gin", |
| 44 "//gpu", | 44 "//gpu", |
| 45 "//google_apis", | 45 "//google_apis", |
| 46 "//google_apis/gcm", | 46 "//google_apis/gcm", |
| 47 "//ipc", | 47 "//ipc", |
| 48 "//ipc/mojo", | 48 "//ipc/mojo", |
| 49 "//jingle:notifier", | 49 "//jingle:notifier", |
| 50 "//media", | 50 "//media", |
| 51 "//media/blink", | |
| 51 "//media/cast", | 52 "//media/cast", |
| 52 "//mojo", | 53 "//mojo", |
| 53 "//net", | 54 "//net", |
| 54 "//pdf", | 55 "//pdf", |
| 55 "//ppapi:ppapi_c", | 56 "//ppapi:ppapi_c", |
| 56 "//printing", | 57 "//printing", |
| 57 "//remoting/client/plugin", | 58 "//remoting/client/plugin", |
| 58 "//sandbox", | 59 "//sandbox", |
| 59 "//sdch", | 60 "//sdch", |
| 60 "//skia", | 61 "//skia", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 "//chrome/renderer", # Blocked on content. | 185 "//chrome/renderer", # Blocked on content. |
| 185 "//chrome/service", # Blocked on content. | 186 "//chrome/service", # Blocked on content. |
| 186 "//chrome/utility", # Blocked on content. | 187 "//chrome/utility", # Blocked on content. |
| 187 "//content", | 188 "//content", |
| 188 "//content/shell:content_shell", # Blocked on content. | 189 "//content/shell:content_shell", # Blocked on content. |
| 189 "//content/test:test_support", # Blocked on content. | 190 "//content/test:test_support", # Blocked on content. |
| 190 "//extensions/browser", | 191 "//extensions/browser", |
| 191 "//extensions/common", | 192 "//extensions/common", |
| 192 "//extensions/common/api", | 193 "//extensions/common/api", |
| 193 "//extensions/renderer", | 194 "//extensions/renderer", |
| 195 "//media/blink", # Blocked on blink | |
|
scherkus (not reviewing)
2014/09/04 23:00:36
nit: looks like they're using two spaces here
acolwell GONE FROM CHROMIUM
2014/09/05 00:23:43
Done.
| |
| 194 "//pdf", # Not compiled on Android in GYP yet, either. | 196 "//pdf", # Not compiled on Android in GYP yet, either. |
| 195 "//ppapi:ppapi_c", | 197 "//ppapi:ppapi_c", |
| 196 "//sandbox", | 198 "//sandbox", |
| 197 "//third_party/libusb", | 199 "//third_party/libusb", |
| 198 "//ui/keyboard", # Blocked on content. | 200 "//ui/keyboard", # Blocked on content. |
| 199 | 201 |
| 200 # Blocked on neon stuff in vp8 | 202 # Blocked on neon stuff in vp8 |
| 201 "//third_party/WebKit/public:all_blink", | 203 "//third_party/WebKit/public:all_blink", |
| 202 | 204 |
| 203 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 205 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 237 ] | 239 ] |
| 238 } | 240 } |
| 239 | 241 |
| 240 # Non-mobile builds. | 242 # Non-mobile builds. |
| 241 if (!is_android && !is_ios) { | 243 if (!is_android && !is_ios) { |
| 242 deps += [ | 244 deps += [ |
| 243 "//device/usb", | 245 "//device/usb", |
| 244 ] | 246 ] |
| 245 } | 247 } |
| 246 } | 248 } |
| OLD | NEW |