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