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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 346 "//third_party/WebKit/public:all_blink", | 346 "//third_party/WebKit/public:all_blink", |
| 347 "//third_party/angle:translator", | 347 "//third_party/angle:translator", |
| 348 "//third_party/ffmpeg", | 348 "//third_party/ffmpeg", |
| 349 "//third_party/leveldatabase", | 349 "//third_party/leveldatabase", |
| 350 "//third_party/libjingle", | 350 "//third_party/libjingle", |
| 351 "//third_party/usrsctp", | 351 "//third_party/usrsctp", |
| 352 "//third_party/webrtc", | 352 "//third_party/webrtc", |
| 353 "//ui/accessibility", | 353 "//ui/accessibility", |
| 354 "//ui/app_list", | 354 "//ui/app_list", |
| 355 "//ui/aura", | 355 "//ui/aura", |
| 356 "//ui/base", | |
|
tfarina
2014/12/16 13:14:08
Why are you removing these entries?
Slava Chigrin
2014/12/16 13:32:34
This is a part of "deps -=" list, so removing is
tfarina
2014/12/16 13:42:46
OK, I see. With this you are enabling those target
Slava Chigrin
2014/12/16 14:21:51
Yes, and try jobs are completed successfully too.
| |
| 357 "//ui/display", | |
| 358 "//ui/events", | |
| 359 "//ui/gfx", | |
| 360 "//ui/gl", | 356 "//ui/gl", |
| 361 "//ui/keyboard", | 357 "//ui/keyboard", |
| 362 "//ui/native_theme", | 358 "//ui/native_theme", |
| 363 "//ui/snapshot", | 359 "//ui/snapshot", |
| 364 "//ui/surface", | 360 "//ui/surface", |
| 365 "//ui/touch_selection", | 361 "//ui/touch_selection", |
| 366 "//ui/views", | 362 "//ui/views", |
| 367 "//ui/views/controls/webview", | 363 "//ui/views/controls/webview", |
| 368 "//ui/web_dialogs", | 364 "//ui/web_dialogs", |
| 369 "//ui/wm", | 365 "//ui/wm", |
| 370 ] | 366 ] |
| 371 } | 367 } |
| 372 } | 368 } |
| OLD | NEW |