| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//content/public/renderer", | 133 "//content/public/renderer", |
| 134 "//dbus", | 134 "//dbus", |
| 135 "//extensions/common/api:extensions_api", | 135 "//extensions/common/api:extensions_api", |
| 136 "//pdf", # Not compiled on Android in GYP yet, either. | 136 "//pdf", # Not compiled on Android in GYP yet, either. |
| 137 "//ppapi:ppapi_c", | 137 "//ppapi:ppapi_c", |
| 138 "//sandbox", | 138 "//sandbox", |
| 139 "//third_party/libusb", | 139 "//third_party/libusb", |
| 140 "//tools/gn", | 140 "//tools/gn", |
| 141 "//ui/aura", | 141 "//ui/aura", |
| 142 | 142 |
| 143 # Fails on Android for unknown reasons. |
| 144 "//third_party/flac", |
| 145 |
| 143 # TODO(brettw) make Blink work on Android. | 146 # TODO(brettw) make Blink work on Android. |
| 144 "//third_party/WebKit/public:blink_headers", | 147 "//third_party/WebKit/public:blink_headers", |
| 145 "//third_party/WebKit/Source/wtf", | 148 "//third_party/WebKit/Source/wtf", |
| 146 | 149 |
| 147 # Not tested on Android yet: | 150 # Not tested on Android yet: |
| 148 "//webkit/browser:storage", | 151 "//webkit/browser:storage", |
| 149 "//webkit/child", | 152 "//webkit/child", |
| 150 ] | 153 ] |
| 151 } | 154 } |
| 152 | 155 |
| 153 if (use_ozone) { | 156 if (use_ozone) { |
| 154 deps += [ | 157 deps += [ |
| 155 "//ui/events/ozone:events_ozone", | 158 "//ui/events/ozone:events_ozone", |
| 156 "//ui/events/ozone:events_ozone_evdev", | 159 "//ui/events/ozone:events_ozone_evdev", |
| 157 ] | 160 ] |
| 158 } | 161 } |
| 159 } | 162 } |
| OLD | NEW |