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 27 matching lines...) Expand all Loading... |
38 "//device/usb", | 38 "//device/usb", |
39 #"//extensions/common/api:extensions_api", | 39 #"//extensions/common/api:extensions_api", |
40 "//gin", | 40 "//gin", |
41 "//gpu/command_buffer/client", | 41 "//gpu/command_buffer/client", |
42 "//gpu/command_buffer/service", | 42 "//gpu/command_buffer/service", |
43 "//google_apis", | 43 "//google_apis", |
44 "//ipc", | 44 "//ipc", |
45 "//mojo", | 45 "//mojo", |
46 "//net", | 46 "//net", |
47 "//ppapi:ppapi_c", | 47 "//ppapi:ppapi_c", |
| 48 "//sandbox", |
48 #"//sdch", | 49 #"//sdch", |
49 "//skia", | 50 "//skia", |
50 "//sql", | 51 "//sql", |
51 "//third_party/brotli", | 52 "//third_party/brotli", |
52 "//third_party/harfbuzz-ng", | 53 "//third_party/harfbuzz-ng", |
53 "//third_party/iccjpeg", | 54 "//third_party/iccjpeg", |
54 "//third_party/icu", | 55 "//third_party/icu", |
55 "//third_party/leveldatabase", | 56 "//third_party/leveldatabase", |
56 "//third_party/libpng", | 57 "//third_party/libpng", |
57 "//third_party/libusb", | 58 "//third_party/libusb", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 | 109 |
109 # This stuff all depends on ui/surface which requires some .class jni | 110 # This stuff all depends on ui/surface which requires some .class jni |
110 # generators (ui/gl/gl.gyp:surface_jni_headers). | 111 # generators (ui/gl/gl.gyp:surface_jni_headers). |
111 "//ui/gl", | 112 "//ui/gl", |
112 "//gpu/command_buffer/client", | 113 "//gpu/command_buffer/client", |
113 "//gpu/command_buffer/service", | 114 "//gpu/command_buffer/service", |
114 "//ui/surface", | 115 "//ui/surface", |
115 ] | 116 ] |
116 } | 117 } |
117 } | 118 } |
OLD | NEW |