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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 "//third_party/angle:translator", | 57 "//third_party/angle:translator", |
58 "//third_party/brotli", | 58 "//third_party/brotli", |
59 "//third_party/harfbuzz-ng", | 59 "//third_party/harfbuzz-ng", |
60 "//third_party/iccjpeg", | 60 "//third_party/iccjpeg", |
61 "//third_party/icu", | 61 "//third_party/icu", |
62 "//third_party/leveldatabase", | 62 "//third_party/leveldatabase", |
63 "//third_party/libpng", | 63 "//third_party/libpng", |
64 "//third_party/libusb", | 64 "//third_party/libusb", |
65 "//third_party/libwebm", | 65 "//third_party/libwebm", |
66 "//third_party/libwebp", | 66 "//third_party/libwebp", |
67 "//third_party/libxslt", | |
68 "//third_party/libyuv", | 67 "//third_party/libyuv", |
69 "//third_party/mesa", | 68 "//third_party/mesa", |
70 "//third_party/ots", | 69 "//third_party/ots", |
71 "//third_party/protobuf:protobuf_lite", | 70 "//third_party/protobuf:protobuf_lite", |
72 "//third_party/qcms", | 71 "//third_party/qcms", |
73 "//third_party/re2", | 72 "//third_party/re2", |
74 "//third_party/smhasher:cityhash", | 73 "//third_party/smhasher:cityhash", |
75 "//third_party/smhasher:murmurhash3", | 74 "//third_party/smhasher:murmurhash3", |
76 "//third_party/smhasher:pmurhash", | 75 "//third_party/smhasher:pmurhash", |
77 # "//third_party/WebKit/Source/platform", | 76 # "//third_party/WebKit/Source/platform", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 130 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
132 "//tools/gn", | 131 "//tools/gn", |
133 "//ui/aura", | 132 "//ui/aura", |
134 | 133 |
135 # Not tested on Android yet: | 134 # Not tested on Android yet: |
136 "//webkit/browser:storage", | 135 "//webkit/browser:storage", |
137 "//webkit/child", | 136 "//webkit/child", |
138 ] | 137 ] |
139 } | 138 } |
140 } | 139 } |
OLD | NEW |