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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "//third_party/smhasher:murmurhash3", | 74 "//third_party/smhasher:murmurhash3", |
75 "//third_party/smhasher:pmurhash", | 75 "//third_party/smhasher:pmurhash", |
76 # "//third_party/WebKit/Source/platform", | 76 # "//third_party/WebKit/Source/platform", |
77 "//third_party/WebKit/Source/wtf", | 77 "//third_party/WebKit/Source/wtf", |
78 "//third_party/zlib", | 78 "//third_party/zlib", |
79 "//third_party:jpeg", | 79 "//third_party:jpeg", |
80 "//tools/gn", | 80 "//tools/gn", |
81 "//ui/accessibility", | 81 "//ui/accessibility", |
82 "//ui/base", | 82 "//ui/base", |
83 "//ui/events", | 83 "//ui/events", |
| 84 "//ui/events/ozone:events_ozone", |
| 85 "//ui/events/ozone:events_ozone_evdev", |
84 "//ui/gfx", | 86 "//ui/gfx", |
85 "//ui/gl", | 87 "//ui/gl", |
86 "//ui/native_theme", | 88 "//ui/native_theme", |
87 "//ui/resources", | 89 "//ui/resources", |
88 "//ui/snapshot", | 90 "//ui/snapshot", |
89 "//ui/strings", | 91 "//ui/strings", |
90 "//ui/surface", | 92 "//ui/surface", |
91 "//url", | 93 "//url", |
92 "//v8:v8", | 94 "//v8:v8", |
93 "//webkit/browser:storage", | 95 "//webkit/browser:storage", |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 130 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
129 "//sandbox", | 131 "//sandbox", |
130 "//tools/gn", | 132 "//tools/gn", |
131 | 133 |
132 # Not tested on Android yet: | 134 # Not tested on Android yet: |
133 "//webkit/browser:storage", | 135 "//webkit/browser:storage", |
134 "//webkit/child", | 136 "//webkit/child", |
135 ] | 137 ] |
136 } | 138 } |
137 } | 139 } |
OLD | NEW |