| 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 14 matching lines...) Expand all Loading... |
| 25 "//chrome/browser/ui", | 25 "//chrome/browser/ui", |
| 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 "//device/bluetooth", |
| 36 "//device/nfc", |
| 37 "//device/usb", |
| 35 "//extensions/common/api", | 38 "//extensions/common/api", |
| 36 "//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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "//ui/views", | 177 "//ui/views", |
| 175 | 178 |
| 176 # Fails on Android for unknown reasons. | 179 # Fails on Android for unknown reasons. |
| 177 "//third_party/flac", | 180 "//third_party/flac", |
| 178 "//breakpad:symupload", | 181 "//breakpad:symupload", |
| 179 | 182 |
| 180 # TODO(brettw) make Blink work on Android. | 183 # TODO(brettw) make Blink work on Android. |
| 181 "//third_party/WebKit/public:all_blink", | 184 "//third_party/WebKit/public:all_blink", |
| 182 | 185 |
| 183 # Not tested on Android yet: | 186 # Not tested on Android yet: |
| 187 "//google_apis/gcm", |
| 184 "//third_party/cld_2", | 188 "//third_party/cld_2", |
| 185 "//third_party/libaddressinput", | 189 "//third_party/libaddressinput", |
| 186 "//third_party/ffmpeg", | 190 "//third_party/ffmpeg", |
| 187 "//ui/web_dialogs", | 191 "//ui/web_dialogs", |
| 188 "//ui/wm", | 192 "//ui/wm", |
| 189 "//webkit/browser:storage", | 193 "//webkit/browser:storage", |
| 190 "//webkit/child", | 194 "//webkit/child", |
| 191 ] | 195 ] |
| 192 } | 196 } |
| 193 | 197 |
| 194 if (use_ozone) { | 198 if (use_ozone) { |
| 195 deps += [ | 199 deps += [ |
| 196 "//ui/events/ozone:events_ozone", | 200 "//ui/events/ozone:events_ozone", |
| 197 "//ui/events/ozone:events_ozone_evdev", | 201 "//ui/events/ozone:events_ozone_evdev", |
| 198 ] | 202 ] |
| 199 } | 203 } |
| 200 } | 204 } |
| OLD | NEW |