| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "//ppapi:ppapi_c", | 46 "//ppapi:ppapi_c", |
| 47 "//printing", | 47 "//printing", |
| 48 "//sandbox", | 48 "//sandbox", |
| 49 "//sdch", | 49 "//sdch", |
| 50 "//skia", | 50 "//skia", |
| 51 "//sql", | 51 "//sql", |
| 52 "//third_party/WebKit/public:all_blink", | 52 "//third_party/WebKit/public:all_blink", |
| 53 "//third_party/angle:translator", | 53 "//third_party/angle:translator", |
| 54 "//third_party/brotli", | 54 "//third_party/brotli", |
| 55 "//third_party/cacheinvalidation", | 55 "//third_party/cacheinvalidation", |
| 56 "//third_party/cld", |
| 57 "//third_party/cld_2", |
| 56 "//third_party/ffmpeg", | 58 "//third_party/ffmpeg", |
| 57 "//third_party/flac", | 59 "//third_party/flac", |
| 58 "//third_party/harfbuzz-ng", | 60 "//third_party/harfbuzz-ng", |
| 59 "//third_party/hunspell", | 61 "//third_party/hunspell", |
| 60 "//third_party/iccjpeg", | 62 "//third_party/iccjpeg", |
| 61 "//third_party/icu", | 63 "//third_party/icu", |
| 62 "//third_party/leveldatabase", | 64 "//third_party/leveldatabase", |
| 63 "//third_party/libaddressinput", | 65 "//third_party/libaddressinput", |
| 64 "//third_party/libphonenumber", | 66 "//third_party/libphonenumber", |
| 65 "//third_party/libpng", | 67 "//third_party/libpng", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "//ui/aura", | 162 "//ui/aura", |
| 161 | 163 |
| 162 # Fails on Android for unknown reasons. | 164 # Fails on Android for unknown reasons. |
| 163 "//third_party/flac", | 165 "//third_party/flac", |
| 164 "//breakpad:symupload", | 166 "//breakpad:symupload", |
| 165 | 167 |
| 166 # TODO(brettw) make Blink work on Android. | 168 # TODO(brettw) make Blink work on Android. |
| 167 "//third_party/WebKit/public:all_blink", | 169 "//third_party/WebKit/public:all_blink", |
| 168 | 170 |
| 169 # Not tested on Android yet: | 171 # Not tested on Android yet: |
| 172 "//third_party/cld_2", |
| 170 "//third_party/libaddressinput", | 173 "//third_party/libaddressinput", |
| 171 "//third_party/ffmpeg", | 174 "//third_party/ffmpeg", |
| 172 "//ui/web_dialogs", | 175 "//ui/web_dialogs", |
| 173 "//ui/wm", | 176 "//ui/wm", |
| 174 "//webkit/browser:storage", | 177 "//webkit/browser:storage", |
| 175 "//webkit/child", | 178 "//webkit/child", |
| 176 ] | 179 ] |
| 177 } | 180 } |
| 178 | 181 |
| 179 if (use_ozone) { | 182 if (use_ozone) { |
| 180 deps += [ | 183 deps += [ |
| 181 "//ui/events/ozone:events_ozone", | 184 "//ui/events/ozone:events_ozone", |
| 182 "//ui/events/ozone:events_ozone_evdev", | 185 "//ui/events/ozone:events_ozone_evdev", |
| 183 ] | 186 ] |
| 184 } | 187 } |
| 185 } | 188 } |
| OLD | NEW |