| 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", |
| 67 "//third_party/libyuv", | 68 "//third_party/libyuv", |
| 68 "//third_party/mesa", | 69 "//third_party/mesa", |
| 69 "//third_party/ots", | 70 "//third_party/ots", |
| 70 "//third_party/protobuf:protobuf_lite", | 71 "//third_party/protobuf:protobuf_lite", |
| 71 "//third_party/qcms", | 72 "//third_party/qcms", |
| 72 "//third_party/re2", | 73 "//third_party/re2", |
| 73 "//third_party/smhasher:cityhash", | 74 "//third_party/smhasher:cityhash", |
| 74 "//third_party/smhasher:murmurhash3", | 75 "//third_party/smhasher:murmurhash3", |
| 75 "//third_party/smhasher:pmurhash", | 76 "//third_party/smhasher:pmurhash", |
| 76 # "//third_party/WebKit/Source/platform", | 77 # "//third_party/WebKit/Source/platform", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 129 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
| 129 "//sandbox", | 130 "//sandbox", |
| 130 "//tools/gn", | 131 "//tools/gn", |
| 131 | 132 |
| 132 # Not tested on Android yet: | 133 # Not tested on Android yet: |
| 133 "//webkit/browser:storage", | 134 "//webkit/browser:storage", |
| 134 "//webkit/child", | 135 "//webkit/child", |
| 135 ] | 136 ] |
| 136 } | 137 } |
| 137 } | 138 } |
| OLD | NEW |