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 29 matching lines...) Expand all Loading... |
40 "//crypto", | 40 "//crypto", |
41 "//extensions/common/api:extensions_api", | 41 "//extensions/common/api:extensions_api", |
42 "//dbus", | 42 "//dbus", |
43 "//device/usb", | 43 "//device/usb", |
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 "//pdf", |
50 "//ppapi:ppapi_c", | 51 "//ppapi:ppapi_c", |
51 "//printing", | 52 "//printing", |
52 "//sandbox", | 53 "//sandbox", |
53 "//sdch", | 54 "//sdch", |
54 "//skia", | 55 "//skia", |
55 "//sql", | 56 "//sql", |
56 "//third_party/angle:translator", | 57 "//third_party/angle:translator", |
57 "//third_party/brotli", | 58 "//third_party/brotli", |
58 "//third_party/harfbuzz-ng", | 59 "//third_party/harfbuzz-ng", |
59 "//third_party/iccjpeg", | 60 "//third_party/iccjpeg", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ] | 114 ] |
114 } | 115 } |
115 | 116 |
116 if (is_android) { | 117 if (is_android) { |
117 deps -= [ | 118 deps -= [ |
118 "//cc", | 119 "//cc", |
119 "//content/public/common", | 120 "//content/public/common", |
120 "//content/public/renderer", | 121 "//content/public/renderer", |
121 "//dbus", | 122 "//dbus", |
122 "//extensions/common/api:extensions_api", | 123 "//extensions/common/api:extensions_api", |
| 124 "//pdf", # Not compiled on Android in GYP yet, either. |
123 "//ppapi:ppapi_c", | 125 "//ppapi:ppapi_c", |
124 "//third_party/libusb", | 126 "//third_party/libusb", |
125 # "//third_party/WebKit/Source/platform", | 127 # "//third_party/WebKit/Source/platform", |
126 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. | 128 "//third_party/WebKit/Source/wtf", # TODO(brettw) re-enable for Android. |
127 "//sandbox", | 129 "//sandbox", |
128 "//tools/gn", | 130 "//tools/gn", |
129 | 131 |
130 # Not tested on Android yet: | 132 # Not tested on Android yet: |
131 "//webkit/browser:storage", | 133 "//webkit/browser:storage", |
132 "//webkit/child", | 134 "//webkit/child", |
133 | 135 |
134 # This stuff all depends on ui/surface which requires some .class jni | 136 # This stuff all depends on ui/surface which requires some .class jni |
135 # generators (ui/gl/gl.gyp:surface_jni_headers). | 137 # generators (ui/gl/gl.gyp:surface_jni_headers). |
136 "//ui/gl", | 138 "//ui/gl", |
137 "//gpu", | 139 "//gpu", |
138 "//ui/snapshot", | 140 "//ui/snapshot", |
139 "//ui/surface", | 141 "//ui/surface", |
140 ] | 142 ] |
141 } | 143 } |
142 } | 144 } |
OLD | NEW |