| 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "//google_apis/gcm", | 58 "//google_apis/gcm", |
| 59 "//ipc", | 59 "//ipc", |
| 60 "//ipc/mojo", | 60 "//ipc/mojo", |
| 61 "//media", | 61 "//media", |
| 62 "//media/cast", | 62 "//media/cast", |
| 63 "//mojo", | 63 "//mojo", |
| 64 "//net", | 64 "//net", |
| 65 "//pdf", | 65 "//pdf", |
| 66 "//ppapi:ppapi_c", | 66 "//ppapi:ppapi_c", |
| 67 "//printing", | 67 "//printing", |
| 68 "//remoting/client/plugin", |
| 68 "//sandbox", | 69 "//sandbox", |
| 69 "//sdch", | 70 "//sdch", |
| 70 "//skia", | 71 "//skia", |
| 71 "//sql", | 72 "//sql", |
| 72 "//sync", | 73 "//sync", |
| 73 "//third_party/WebKit/public:all_blink", | 74 "//third_party/WebKit/public:all_blink", |
| 74 "//third_party/angle:translator", | 75 "//third_party/angle:translator", |
| 75 "//third_party/brotli", | 76 "//third_party/brotli", |
| 76 "//third_party/cacheinvalidation", | 77 "//third_party/cacheinvalidation", |
| 77 "//third_party/cld", | 78 "//third_party/cld", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 "//ui/display", | 218 "//ui/display", |
| 218 "//ui/views", | 219 "//ui/views", |
| 219 "//ui/views/controls/webview", | 220 "//ui/views/controls/webview", |
| 220 | 221 |
| 221 # Fails on Android for unknown reasons. | 222 # Fails on Android for unknown reasons. |
| 222 "//third_party/flac", | 223 "//third_party/flac", |
| 223 "//breakpad:symupload", | 224 "//breakpad:symupload", |
| 224 | 225 |
| 225 # Not tested on Android yet: | 226 # Not tested on Android yet: |
| 226 "//google_apis/gcm", | 227 "//google_apis/gcm", |
| 228 "//remoting/client/plugin", |
| 227 "//third_party/cld_2", | 229 "//third_party/cld_2", |
| 228 "//third_party/libaddressinput", | 230 "//third_party/libaddressinput", |
| 229 "//third_party/ffmpeg", | 231 "//third_party/ffmpeg", |
| 230 "//ui:ui_unittests", | 232 "//ui:ui_unittests", |
| 231 "//ui/app_list", | 233 "//ui/app_list", |
| 232 "//ui/web_dialogs", | 234 "//ui/web_dialogs", |
| 233 "//ui/wm", | 235 "//ui/wm", |
| 234 "//webkit/browser:storage", | 236 "//webkit/browser:storage", |
| 235 "//webkit/child", | 237 "//webkit/child", |
| 236 ] | 238 ] |
| 237 } | 239 } |
| 238 | 240 |
| 239 if (use_ozone) { | 241 if (use_ozone) { |
| 240 deps += [ | 242 deps += [ |
| 241 "//ui/ozone", | 243 "//ui/ozone", |
| 242 "//ui/ozone/demo", | 244 "//ui/ozone/demo", |
| 243 ] | 245 ] |
| 244 } | 246 } |
| 245 } | 247 } |
| 246 | 248 |
| 247 } | 249 } |
| OLD | NEW |