| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//ipc", | 44 "//ipc", |
| 45 "//mojo", | 45 "//mojo", |
| 46 "//net", | 46 "//net", |
| 47 "//ppapi:ppapi_c", | 47 "//ppapi:ppapi_c", |
| 48 "//sandbox", | 48 "//sandbox", |
| 49 #"//sdch", | 49 #"//sdch", |
| 50 "//skia", | 50 "//skia", |
| 51 "//sql", | 51 "//sql", |
| 52 "//third_party/angle:translator", | 52 "//third_party/angle:translator", |
| 53 "//third_party/brotli", | 53 "//third_party/brotli", |
| 54 "//third_party/fontconfig", |
| 54 "//third_party/harfbuzz-ng", | 55 "//third_party/harfbuzz-ng", |
| 55 "//third_party/iccjpeg", | 56 "//third_party/iccjpeg", |
| 56 "//third_party/icu", | 57 "//third_party/icu", |
| 57 "//third_party/leveldatabase", | 58 "//third_party/leveldatabase", |
| 58 "//third_party/libpng", | 59 "//third_party/libpng", |
| 59 "//third_party/libusb", | 60 "//third_party/libusb", |
| 60 "//third_party/libwebm", | 61 "//third_party/libwebm", |
| 61 "//third_party/libwebp", | 62 "//third_party/libwebp", |
| 62 "//third_party/ots", | 63 "//third_party/ots", |
| 63 "//third_party/protobuf:protobuf_lite", | 64 "//third_party/protobuf:protobuf_lite", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//tools/gn", | 111 "//tools/gn", |
| 111 | 112 |
| 112 # This stuff all depends on ui/surface which requires some .class jni | 113 # This stuff all depends on ui/surface which requires some .class jni |
| 113 # generators (ui/gl/gl.gyp:surface_jni_headers). | 114 # generators (ui/gl/gl.gyp:surface_jni_headers). |
| 114 "//ui/gl", | 115 "//ui/gl", |
| 115 "//gpu", | 116 "//gpu", |
| 116 "//ui/surface", | 117 "//ui/surface", |
| 117 ] | 118 ] |
| 118 } | 119 } |
| 119 } | 120 } |
| OLD | NEW |