| 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 15 matching lines...) Expand all Loading... |
| 26 "//chrome/browser/ui/views", | 26 "//chrome/browser/ui/views", |
| 27 "//chrome/common", | 27 "//chrome/common", |
| 28 "//chrome/plugin", | 28 "//chrome/plugin", |
| 29 "//chrome/renderer", | 29 "//chrome/renderer", |
| 30 "//chrome/service", | 30 "//chrome/service", |
| 31 "//chrome/utility", | 31 "//chrome/utility", |
| 32 "//components:all_components", | 32 "//components:all_components", |
| 33 "//content", | 33 "//content", |
| 34 "//crypto", | 34 "//crypto", |
| 35 "//extensions/common/api:extensions_api", | 35 "//extensions/common/api:extensions_api", |
| 36 "//device/bluetooth", |
| 37 "//device/nfc", |
| 36 "//device/usb", | 38 "//device/usb", |
| 37 "//gin", | 39 "//gin", |
| 38 "//gpu", | 40 "//gpu", |
| 39 "//google_apis", | 41 "//google_apis", |
| 42 "//google_apis/gcm", |
| 40 "//ipc", | 43 "//ipc", |
| 41 "//mojo", | 44 "//mojo", |
| 42 "//mojo/common", | 45 "//mojo/common", |
| 43 "//mojo/environment:chromium", | 46 "//mojo/environment:chromium", |
| 44 "//mojo/service_manager", | 47 "//mojo/service_manager", |
| 45 "//mojo/system", | 48 "//mojo/system", |
| 46 "//net", | 49 "//net", |
| 47 "//pdf", | 50 "//pdf", |
| 48 "//ppapi:ppapi_c", | 51 "//ppapi:ppapi_c", |
| 49 "//printing", | 52 "//printing", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "//ui/aura", | 169 "//ui/aura", |
| 167 | 170 |
| 168 # Fails on Android for unknown reasons. | 171 # Fails on Android for unknown reasons. |
| 169 "//third_party/flac", | 172 "//third_party/flac", |
| 170 "//breakpad:symupload", | 173 "//breakpad:symupload", |
| 171 | 174 |
| 172 # TODO(brettw) make Blink work on Android. | 175 # TODO(brettw) make Blink work on Android. |
| 173 "//third_party/WebKit/public:all_blink", | 176 "//third_party/WebKit/public:all_blink", |
| 174 | 177 |
| 175 # Not tested on Android yet: | 178 # Not tested on Android yet: |
| 179 "//google_apis/gcm", |
| 176 "//third_party/cld_2", | 180 "//third_party/cld_2", |
| 177 "//third_party/libaddressinput", | 181 "//third_party/libaddressinput", |
| 178 "//third_party/ffmpeg", | 182 "//third_party/ffmpeg", |
| 179 "//ui/web_dialogs", | 183 "//ui/web_dialogs", |
| 180 "//ui/wm", | 184 "//ui/wm", |
| 181 "//webkit/browser:storage", | 185 "//webkit/browser:storage", |
| 182 "//webkit/child", | 186 "//webkit/child", |
| 183 ] | 187 ] |
| 184 } | 188 } |
| 185 | 189 |
| 186 if (use_ozone) { | 190 if (use_ozone) { |
| 187 deps += [ | 191 deps += [ |
| 188 "//ui/events/ozone:events_ozone", | 192 "//ui/events/ozone:events_ozone", |
| 189 "//ui/events/ozone:events_ozone_evdev", | 193 "//ui/events/ozone:events_ozone_evdev", |
| 190 ] | 194 ] |
| 191 } | 195 } |
| 192 } | 196 } |
| OLD | NEW |