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 30 matching lines...) Expand all Loading... |
41 "//dbus", | 41 "//dbus", |
42 "//device/usb", | 42 "//device/usb", |
43 #"//extensions/common/api:extensions_api", | 43 #"//extensions/common/api:extensions_api", |
44 "//gin", | 44 "//gin", |
45 "//gpu", | 45 "//gpu", |
46 "//google_apis", | 46 "//google_apis", |
47 "//ipc", | 47 "//ipc", |
48 "//mojo", | 48 "//mojo", |
49 "//net", | 49 "//net", |
50 "//ppapi:ppapi_c", | 50 "//ppapi:ppapi_c", |
| 51 "//printing", |
51 #"//sandbox", | 52 #"//sandbox", |
52 "//sdch", | 53 "//sdch", |
53 "//skia", | 54 "//skia", |
54 "//sql", | 55 "//sql", |
55 "//third_party/angle:translator", | 56 "//third_party/angle:translator", |
56 "//third_party/brotli", | 57 "//third_party/brotli", |
57 "//third_party/harfbuzz-ng", | 58 "//third_party/harfbuzz-ng", |
58 "//third_party/iccjpeg", | 59 "//third_party/iccjpeg", |
59 "//third_party/icu", | 60 "//third_party/icu", |
60 "//third_party/leveldatabase", | 61 "//third_party/leveldatabase", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 | 132 |
132 # This stuff all depends on ui/surface which requires some .class jni | 133 # This stuff all depends on ui/surface which requires some .class jni |
133 # generators (ui/gl/gl.gyp:surface_jni_headers). | 134 # generators (ui/gl/gl.gyp:surface_jni_headers). |
134 "//ui/gl", | 135 "//ui/gl", |
135 "//gpu", | 136 "//gpu", |
136 "//ui/snapshot", | 137 "//ui/snapshot", |
137 "//ui/surface", | 138 "//ui/surface", |
138 ] | 139 ] |
139 } | 140 } |
140 } | 141 } |
OLD | NEW |