| 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "//third_party/re2", | 88 "//third_party/re2", |
| 89 "//third_party/smhasher:cityhash", | 89 "//third_party/smhasher:cityhash", |
| 90 "//third_party/smhasher:murmurhash3", | 90 "//third_party/smhasher:murmurhash3", |
| 91 "//third_party/smhasher:pmurhash", | 91 "//third_party/smhasher:pmurhash", |
| 92 "//third_party/snappy", | 92 "//third_party/snappy", |
| 93 "//third_party/speex", | 93 "//third_party/speex", |
| 94 "//third_party/widevine/cdm:version_h", | 94 "//third_party/widevine/cdm:version_h", |
| 95 "//third_party/zlib", | 95 "//third_party/zlib", |
| 96 "//third_party:jpeg", | 96 "//third_party:jpeg", |
| 97 "//tools/gn", | 97 "//tools/gn", |
| 98 "//tools/imagediff($host_toolchain)", |
| 98 "//ui/app_list", | 99 "//ui/app_list", |
| 99 "//ui/aura", | 100 "//ui/aura", |
| 100 "//ui/accessibility", | 101 "//ui/accessibility", |
| 101 "//ui/base", | 102 "//ui/base", |
| 102 "//ui/display", | 103 "//ui/display", |
| 103 "//ui/events", | 104 "//ui/events", |
| 104 "//ui/gfx", | 105 "//ui/gfx", |
| 105 "//ui/gl", | 106 "//ui/gl", |
| 106 "//ui/keyboard", | 107 "//ui/keyboard", |
| 107 "//ui/native_theme", | 108 "//ui/native_theme", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 ] | 211 ] |
| 211 } | 212 } |
| 212 | 213 |
| 213 if (use_ozone) { | 214 if (use_ozone) { |
| 214 deps += [ | 215 deps += [ |
| 215 "//ui/events/ozone:events_ozone", | 216 "//ui/events/ozone:events_ozone", |
| 216 "//ui/events/ozone:events_ozone_evdev", | 217 "//ui/events/ozone:events_ozone_evdev", |
| 217 ] | 218 ] |
| 218 } | 219 } |
| 219 } | 220 } |
| OLD | NEW |