| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "//third_party/brotli", | 62 "//third_party/brotli", |
| 63 "//third_party/flac", | 63 "//third_party/flac", |
| 64 "//third_party/harfbuzz-ng", | 64 "//third_party/harfbuzz-ng", |
| 65 "//third_party/iccjpeg", | 65 "//third_party/iccjpeg", |
| 66 "//third_party/icu", | 66 "//third_party/icu", |
| 67 "//third_party/leveldatabase", | 67 "//third_party/leveldatabase", |
| 68 "//third_party/libpng", | 68 "//third_party/libpng", |
| 69 "//third_party/libusb", | 69 "//third_party/libusb", |
| 70 "//third_party/libwebm", | 70 "//third_party/libwebm", |
| 71 "//third_party/libwebp", | 71 "//third_party/libwebp", |
| 72 "//third_party/libxslt", |
| 72 "//third_party/libyuv", | 73 "//third_party/libyuv", |
| 73 "//third_party/mesa", | 74 "//third_party/mesa", |
| 74 "//third_party/ots", | 75 "//third_party/ots", |
| 75 "//third_party/protobuf:protobuf_lite", | 76 "//third_party/protobuf:protobuf_lite", |
| 76 "//third_party/qcms", | 77 "//third_party/qcms", |
| 77 "//third_party/re2", | 78 "//third_party/re2", |
| 78 "//third_party/smhasher:cityhash", | 79 "//third_party/smhasher:cityhash", |
| 79 "//third_party/smhasher:murmurhash3", | 80 "//third_party/smhasher:murmurhash3", |
| 80 "//third_party/smhasher:pmurhash", | 81 "//third_party/smhasher:pmurhash", |
| 81 "//third_party/speex", | 82 "//third_party/speex", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 deps -= [ | 131 deps -= [ |
| 131 "//cc", | 132 "//cc", |
| 132 "//content/public/common", | 133 "//content/public/common", |
| 133 "//content/public/renderer", | 134 "//content/public/renderer", |
| 134 "//dbus", | 135 "//dbus", |
| 135 "//extensions/common/api:extensions_api", | 136 "//extensions/common/api:extensions_api", |
| 136 "//pdf", # Not compiled on Android in GYP yet, either. | 137 "//pdf", # Not compiled on Android in GYP yet, either. |
| 137 "//ppapi:ppapi_c", | 138 "//ppapi:ppapi_c", |
| 138 "//sandbox", | 139 "//sandbox", |
| 139 "//third_party/libusb", | 140 "//third_party/libusb", |
| 141 |
| 142 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 143 "//third_party/libxslt", |
| 144 |
| 140 "//tools/gn", | 145 "//tools/gn", |
| 141 "//ui/aura", | 146 "//ui/aura", |
| 142 | 147 |
| 143 # Fails on Android for unknown reasons. | 148 # Fails on Android for unknown reasons. |
| 144 "//third_party/flac", | 149 "//third_party/flac", |
| 145 | 150 |
| 146 # TODO(brettw) make Blink work on Android. | 151 # TODO(brettw) make Blink work on Android. |
| 147 "//third_party/WebKit/public:blink_headers", | 152 "//third_party/WebKit/public:blink_headers", |
| 148 "//third_party/WebKit/Source/wtf", | 153 "//third_party/WebKit/Source/wtf", |
| 149 | 154 |
| 150 # Not tested on Android yet: | 155 # Not tested on Android yet: |
| 151 "//webkit/browser:storage", | 156 "//webkit/browser:storage", |
| 152 "//webkit/child", | 157 "//webkit/child", |
| 153 ] | 158 ] |
| 154 } | 159 } |
| 155 | 160 |
| 156 if (use_ozone) { | 161 if (use_ozone) { |
| 157 deps += [ | 162 deps += [ |
| 158 "//ui/events/ozone:events_ozone", | 163 "//ui/events/ozone:events_ozone", |
| 159 "//ui/events/ozone:events_ozone_evdev", | 164 "//ui/events/ozone:events_ozone_evdev", |
| 160 ] | 165 ] |
| 161 } | 166 } |
| 162 } | 167 } |
| OLD | NEW |