| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 "//ui/display", | 125 "//ui/display", |
| 126 "//ui/events", | 126 "//ui/events", |
| 127 "//ui/gfx", | 127 "//ui/gfx", |
| 128 "//ui/gl", | 128 "//ui/gl", |
| 129 "//ui/keyboard", | 129 "//ui/keyboard", |
| 130 "//ui/native_theme", | 130 "//ui/native_theme", |
| 131 "//ui/resources", | 131 "//ui/resources", |
| 132 "//ui/snapshot", | 132 "//ui/snapshot", |
| 133 "//ui/strings", | 133 "//ui/strings", |
| 134 "//ui/surface", | 134 "//ui/surface", |
| 135 "//ui/touch_selection", |
| 135 "//ui/views", | 136 "//ui/views", |
| 136 "//ui/views/controls/webview", | 137 "//ui/views/controls/webview", |
| 137 "//ui/web_dialogs", | 138 "//ui/web_dialogs", |
| 138 "//url", | 139 "//url", |
| 139 "//v8:v8", | 140 "//v8:v8", |
| 140 ] + root_extra_deps | 141 ] + root_extra_deps |
| 141 | 142 |
| 142 if (!is_win) { | 143 if (!is_win) { |
| 143 deps += [ "//breakpad:symupload" ] | 144 deps += [ "//breakpad:symupload" ] |
| 144 } | 145 } |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 "//third_party/usrsctp", | 295 "//third_party/usrsctp", |
| 295 "//ui/app_list", | 296 "//ui/app_list", |
| 296 "//ui/aura", | 297 "//ui/aura", |
| 297 "//ui/keyboard", | 298 "//ui/keyboard", |
| 298 "//ui/views", | 299 "//ui/views", |
| 299 "//ui/views/controls/webview", | 300 "//ui/views/controls/webview", |
| 300 "//ui/web_dialogs", | 301 "//ui/web_dialogs", |
| 301 ] | 302 ] |
| 302 } | 303 } |
| 303 | 304 |
| 305 if (is_mac || is_ios) { |
| 306 deps -= [ |
| 307 "//ui/touch_selection", |
| 308 ] |
| 309 } |
| 310 |
| 304 if (is_win) { | 311 if (is_win) { |
| 305 deps -= [ | 312 deps -= [ |
| 306 "//apps", | 313 "//apps", |
| 307 "//ash", | 314 "//ash", |
| 308 "//chrome/browser", | 315 "//chrome/browser", |
| 309 "//chrome/browser/devtools", | 316 "//chrome/browser/devtools", |
| 310 "//chrome/common", | 317 "//chrome/common", |
| 311 "//chrome/plugin", | 318 "//chrome/plugin", |
| 312 "//chrome/renderer", | 319 "//chrome/renderer", |
| 313 "//chrome/test", | 320 "//chrome/test", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 358 "//ui/native_theme", | 365 "//ui/native_theme", |
| 359 "//ui/snapshot", | 366 "//ui/snapshot", |
| 360 "//ui/surface", | 367 "//ui/surface", |
| 361 "//ui/views", | 368 "//ui/views", |
| 362 "//ui/views/controls/webview", | 369 "//ui/views/controls/webview", |
| 363 "//ui/web_dialogs", | 370 "//ui/web_dialogs", |
| 364 "//ui/wm", | 371 "//ui/wm", |
| 365 ] | 372 ] |
| 366 } | 373 } |
| 367 } | 374 } |
| OLD | NEW |