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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 "//third_party/mesa", | 72 "//third_party/mesa", |
73 "//third_party/ots", | 73 "//third_party/ots", |
74 "//third_party/protobuf:protobuf_lite", | 74 "//third_party/protobuf:protobuf_lite", |
75 "//third_party/qcms", | 75 "//third_party/qcms", |
76 "//third_party/re2", | 76 "//third_party/re2", |
77 "//third_party/smhasher:cityhash", | 77 "//third_party/smhasher:cityhash", |
78 "//third_party/smhasher:murmurhash3", | 78 "//third_party/smhasher:murmurhash3", |
79 "//third_party/smhasher:pmurhash", | 79 "//third_party/smhasher:pmurhash", |
80 "//third_party/WebKit/public:blink_headers", | 80 "//third_party/WebKit/public:blink_headers", |
81 "//third_party/WebKit/Source/wtf", | 81 "//third_party/WebKit/Source/wtf", |
| 82 "//third_party/yasm($host_toolchain)", |
82 "//third_party/zlib", | 83 "//third_party/zlib", |
83 "//third_party:jpeg", | 84 "//third_party:jpeg", |
84 "//tools/gn", | 85 "//tools/gn", |
85 "//ui/aura", | 86 "//ui/aura", |
86 "//ui/accessibility", | 87 "//ui/accessibility", |
87 "//ui/base", | 88 "//ui/base", |
88 "//ui/events", | 89 "//ui/events", |
89 "//ui/gfx", | 90 "//ui/gfx", |
90 "//ui/gl", | 91 "//ui/gl", |
91 "//ui/native_theme", | 92 "//ui/native_theme", |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 ] | 144 ] |
144 } | 145 } |
145 | 146 |
146 if (use_ozone) { | 147 if (use_ozone) { |
147 deps += [ | 148 deps += [ |
148 "//ui/events/ozone:events_ozone", | 149 "//ui/events/ozone:events_ozone", |
149 "//ui/events/ozone:events_ozone_evdev", | 150 "//ui/events/ozone:events_ozone_evdev", |
150 ] | 151 ] |
151 } | 152 } |
152 } | 153 } |
OLD | NEW |