| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 "//ui/base", | 89 "//ui/base", |
| 90 "//ui/events", | 90 "//ui/events", |
| 91 "//ui/gfx", | 91 "//ui/gfx", |
| 92 "//ui/gl", | 92 "//ui/gl", |
| 93 "//ui/keyboard", | 93 "//ui/keyboard", |
| 94 "//ui/native_theme", | 94 "//ui/native_theme", |
| 95 "//ui/resources", | 95 "//ui/resources", |
| 96 "//ui/snapshot", | 96 "//ui/snapshot", |
| 97 "//ui/strings", | 97 "//ui/strings", |
| 98 "//ui/surface", | 98 "//ui/surface", |
| 99 "//ui/shell_dialogs", |
| 99 "//ui/web_dialogs", | 100 "//ui/web_dialogs", |
| 100 "//ui/wm", | 101 "//ui/wm", |
| 101 "//url", | 102 "//url", |
| 102 "//v8:v8", | 103 "//v8:v8", |
| 103 "//webkit/browser:storage", | 104 "//webkit/browser:storage", |
| 104 "//webkit/child", | 105 "//webkit/child", |
| 105 ] | 106 ] |
| 106 | 107 |
| 107 if (!is_win) { | 108 if (!is_win) { |
| 108 deps += [ "//breakpad:symupload" ] | 109 deps += [ "//breakpad:symupload" ] |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ] | 175 ] |
| 175 } | 176 } |
| 176 | 177 |
| 177 if (use_ozone) { | 178 if (use_ozone) { |
| 178 deps += [ | 179 deps += [ |
| 179 "//ui/events/ozone:events_ozone", | 180 "//ui/events/ozone:events_ozone", |
| 180 "//ui/events/ozone:events_ozone_evdev", | 181 "//ui/events/ozone:events_ozone_evdev", |
| 181 ] | 182 ] |
| 182 } | 183 } |
| 183 } | 184 } |
| OLD | NEW |