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
3 # found in the LICENSE file.
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
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
9 # file to your new one or GN won't know about it.
11 import("//build/config/ui.gni")
13 # In GN, a "group" is a dummy target that just lists other targets.
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
17 # completed or possibly just tested and then re-enabled.
19 # This is a temporary test of the not-yet-complete NaCl cross-compilation.
20 #"//base(//build/toolchain/nacl:x86_newlib)",
24 "//chrome/browser/devtools",
25 "//chrome/browser/ui",
26 "//chrome/browser/ui/views",
32 "//components:all_components",
35 "//extensions/common/api:extensions_api",
43 "//mojo/environment:chromium",
44 "//mojo/service_manager",
54 "//third_party/WebKit/public:all_blink",
55 "//third_party/angle:translator",
56 "//third_party/brotli",
57 "//third_party/cacheinvalidation",
59 "//third_party/cld_2",
60 "//third_party/ffmpeg",
62 "//third_party/harfbuzz-ng",
63 "//third_party/hunspell",
64 "//third_party/iccjpeg",
66 "//third_party/leveldatabase",
67 "//third_party/libaddressinput",
68 "//third_party/libphonenumber",
69 "//third_party/libpng",
70 "//third_party/libsrtp",
71 "//third_party/libusb",
72 "//third_party/libwebm",
73 "//third_party/libwebp",
74 "//third_party/libxslt",
75 "//third_party/libyuv",
76 "//third_party/lzma_sdk",
80 "//third_party/protobuf:protobuf_lite",
83 "//third_party/smhasher:cityhash",
84 "//third_party/smhasher:murmurhash3",
85 "//third_party/smhasher:pmurhash",
86 "//third_party/snappy",
87 "//third_party/speex",
88 "//third_party/widevine/cdm:version_h",
108 "//webkit/browser:storage",
113 deps += [ "//breakpad:symupload" ]
119 "//third_party/fontconfig",
120 "//third_party/freetype2",
130 if (is_win || is_mac || is_chromeos) {
131 # RLZ works on these platforms.
137 if (cpu_arch == "x86" || cpu_arch == "x64") {
138 # YASM is x86/x64 only.
139 deps += [ "//third_party/yasm($host_toolchain)" ]
145 "//chrome/browser", # Blocked on content.
146 "//chrome/browser/devtools", # Blocked on content.
147 "//chrome/browser/ui", # Blocked on content.
148 "//chrome/browser/ui/views", # Blocked on content.
149 "//chrome/common", # Blocked on content.
150 "//chrome/plugin", # Blocked on content.
151 "//chrome/renderer", # Blocked on content.
152 "//chrome/service", # Blocked on content.
153 "//chrome/utility", # Blocked on content.
155 "//extensions/common/api:extensions_api",
156 "//pdf", # Not compiled on Android in GYP yet, either.
159 "//third_party/libusb",
160 "//ui/keyboard", # Blocked on content.
162 # Seems to not be compiled on Android. Otherwise it will need a config.h.
163 "//third_party/libxslt",
168 # Fails on Android for unknown reasons.
169 "//third_party/flac",
170 "//breakpad:symupload",
172 # TODO(brettw) make Blink work on Android.
173 "//third_party/WebKit/public:all_blink",
175 # Not tested on Android yet:
176 "//third_party/cld_2",
177 "//third_party/libaddressinput",
178 "//third_party/ffmpeg",
181 "//webkit/browser:storage",
188 "//ui/events/ozone:events_ozone",
189 "//ui/events/ozone:events_ozone_evdev",