| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 "//third_party/lzma_sdk", | 76 "//third_party/lzma_sdk", |
| 77 "//third_party/mesa", | 77 "//third_party/mesa", |
| 78 "//third_party/ots", | 78 "//third_party/ots", |
| 79 "//third_party/protobuf:protobuf_lite", | 79 "//third_party/protobuf:protobuf_lite", |
| 80 "//third_party/qcms", | 80 "//third_party/qcms", |
| 81 "//third_party/re2", | 81 "//third_party/re2", |
| 82 "//third_party/smhasher:cityhash", | 82 "//third_party/smhasher:cityhash", |
| 83 "//third_party/smhasher:murmurhash3", | 83 "//third_party/smhasher:murmurhash3", |
| 84 "//third_party/smhasher:pmurhash", | 84 "//third_party/smhasher:pmurhash", |
| 85 "//third_party/speex", | 85 "//third_party/speex", |
| 86 "//third_party/WebKit/public:blink_headers", | 86 "//third_party/WebKit/public:all_blink", |
| 87 "//third_party/WebKit/Source/wtf", | |
| 88 "//third_party/zlib", | 87 "//third_party/zlib", |
| 89 "//third_party:jpeg", | 88 "//third_party:jpeg", |
| 90 "//tools/gn", | 89 "//tools/gn", |
| 91 "//ui/aura", | 90 "//ui/aura", |
| 92 "//ui/accessibility", | 91 "//ui/accessibility", |
| 93 "//ui/base", | 92 "//ui/base", |
| 94 "//ui/events", | 93 "//ui/events", |
| 95 "//ui/gfx", | 94 "//ui/gfx", |
| 96 "//ui/gl", | 95 "//ui/gl", |
| 97 "//ui/native_theme", | 96 "//ui/native_theme", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 151 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
| 153 "//third_party/libxslt", | 152 "//third_party/libxslt", |
| 154 | 153 |
| 155 "//tools/gn", | 154 "//tools/gn", |
| 156 "//ui/aura", | 155 "//ui/aura", |
| 157 | 156 |
| 158 # Fails on Android for unknown reasons. | 157 # Fails on Android for unknown reasons. |
| 159 "//third_party/flac", | 158 "//third_party/flac", |
| 160 | 159 |
| 161 # TODO(brettw) make Blink work on Android. | 160 # TODO(brettw) make Blink work on Android. |
| 162 "//third_party/WebKit/public:blink_headers", | 161 "//third_party/WebKit/public:all_blink", |
| 163 "//third_party/WebKit/Source/wtf", | |
| 164 | 162 |
| 165 # Not tested on Android yet: | 163 # Not tested on Android yet: |
| 166 "//webkit/browser:storage", | 164 "//webkit/browser:storage", |
| 167 "//webkit/child", | 165 "//webkit/child", |
| 168 ] | 166 ] |
| 169 } | 167 } |
| 170 | 168 |
| 171 if (use_ozone) { | 169 if (use_ozone) { |
| 172 deps += [ | 170 deps += [ |
| 173 "//ui/events/ozone:events_ozone", | 171 "//ui/events/ozone:events_ozone", |
| 174 "//ui/events/ozone:events_ozone_evdev", | 172 "//ui/events/ozone:events_ozone_evdev", |
| 175 ] | 173 ] |
| 176 } | 174 } |
| 177 } | 175 } |
| OLD | NEW |