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 |
11 import("//build/config/ui.gni") | 11 import("//build/config/ui.gni") |
12 | 12 |
13 # In GN, a "group" is a dummy target that just lists other targets. | 13 # In GN, a "group" is a dummy target that just lists other targets. |
14 group("root") { | 14 group("root") { |
15 # Note that some dependencies are commented out. These are things that are | 15 # Note that some dependencies are commented out. These are things that are |
16 # currently written but not hooked up to the build yet. They may need to be | 16 # currently written but not hooked up to the build yet. They may need to be |
17 # completed or possibly just tested and then re-enabled. | 17 # completed or possibly just tested and then re-enabled. |
18 deps = [ | 18 deps = [ |
19 # This is a temporary test of the not-yet-complete NaCl cross-compilation. | 19 # This is a temporary test of the not-yet-complete NaCl cross-compilation. |
20 #"//base(//build/toolchain/nacl:x86_newlib)", | 20 #"//base(//build/toolchain/nacl:x86_newlib)", |
21 | 21 "//ash", |
22 "//cc", | 22 "//cc", |
23 "//chrome/browser", | 23 "//chrome/browser", |
24 "//chrome/browser/devtools", | 24 "//chrome/browser/devtools", |
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", |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 "//extensions/common/api", | 155 "//extensions/common/api", |
156 "//pdf", # Not compiled on Android in GYP yet, either. | 156 "//pdf", # Not compiled on Android in GYP yet, either. |
157 "//ppapi:ppapi_c", | 157 "//ppapi:ppapi_c", |
158 "//sandbox", | 158 "//sandbox", |
159 "//third_party/libusb", | 159 "//third_party/libusb", |
160 "//ui/keyboard", # Blocked on content. | 160 "//ui/keyboard", # Blocked on content. |
161 | 161 |
162 # Seems to not be compiled on Android. Otherwise it will need a config.h. | 162 # Seems to not be compiled on Android. Otherwise it will need a config.h. |
163 "//third_party/libxslt", | 163 "//third_party/libxslt", |
164 | 164 |
| 165 # Not relevant to Android. |
| 166 "//ash", |
165 "//tools/gn", | 167 "//tools/gn", |
166 "//ui/aura", | 168 "//ui/aura", |
167 | 169 |
168 # Fails on Android for unknown reasons. | 170 # Fails on Android for unknown reasons. |
169 "//third_party/flac", | 171 "//third_party/flac", |
170 "//breakpad:symupload", | 172 "//breakpad:symupload", |
171 | 173 |
172 # TODO(brettw) make Blink work on Android. | 174 # TODO(brettw) make Blink work on Android. |
173 "//third_party/WebKit/public:all_blink", | 175 "//third_party/WebKit/public:all_blink", |
174 | 176 |
175 # Not tested on Android yet: | 177 # Not tested on Android yet: |
176 "//third_party/cld_2", | 178 "//third_party/cld_2", |
177 "//third_party/libaddressinput", | 179 "//third_party/libaddressinput", |
178 "//third_party/ffmpeg", | 180 "//third_party/ffmpeg", |
179 "//ui/web_dialogs", | 181 "//ui/web_dialogs", |
180 "//ui/wm", | 182 "//ui/wm", |
181 "//webkit/browser:storage", | 183 "//webkit/browser:storage", |
182 "//webkit/child", | 184 "//webkit/child", |
183 ] | 185 ] |
184 } | 186 } |
185 | 187 |
186 if (use_ozone) { | 188 if (use_ozone) { |
187 deps += [ | 189 deps += [ |
188 "//ui/events/ozone:events_ozone", | 190 "//ui/events/ozone:events_ozone", |
189 "//ui/events/ozone:events_ozone_evdev", | 191 "//ui/events/ozone:events_ozone_evdev", |
190 ] | 192 ] |
191 } | 193 } |
192 } | 194 } |
OLD | NEW |