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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
294 "//ui/keyboard", | 294 "//ui/keyboard", |
295 "//ui/views", | 295 "//ui/views", |
296 "//ui/views/controls/webview", | 296 "//ui/views/controls/webview", |
297 "//ui/web_dialogs", | 297 "//ui/web_dialogs", |
298 ] | 298 ] |
299 } | 299 } |
300 | 300 |
301 if (is_mac || is_ios) { | 301 if (is_mac || is_ios) { |
302 deps -= [ "//ui/touch_selection" ] | 302 deps -= [ "//ui/touch_selection" ] |
303 } | 303 } |
| 304 |
| 305 if (is_win) { |
| 306 deps -= [ |
| 307 "//apps", |
| 308 "//ash", |
| 309 "//chrome/browser", |
| 310 "//chrome/browser/devtools", |
| 311 "//chrome/common", |
| 312 "//chrome/plugin", |
| 313 "//chrome/renderer", |
| 314 "//chrome/test", |
| 315 "//chrome/utility", |
| 316 "//components:all_components", |
| 317 "//cc/blink", |
| 318 "//content", |
| 319 "//content/shell:content_shell", |
| 320 "//content/test:test_support", |
| 321 "//extensions/browser", |
| 322 "//extensions/common", |
| 323 "//extensions/renderer", |
| 324 "//media/blink", |
| 325 "//mojo", |
| 326 "//pdf", |
| 327 "//ppapi:ppapi_c", |
| 328 "//printing", |
| 329 "//remoting/client/plugin", |
| 330 "//third_party/WebKit/public:all_blink", |
| 331 "//ui/app_list", |
| 332 "//ui/aura", |
| 333 "//ui/keyboard", |
| 334 "//ui/snapshot", |
| 335 "//ui/views", |
| 336 "//ui/views/controls/webview", |
| 337 "//ui/web_dialogs", |
| 338 "//ui/wm", |
| 339 ] |
| 340 } |
304 } | 341 } |
OLD | NEW |