gn format //base
[chromium-blink-merge.git] / BUILD.gn
blob4a7b7047978c002894db64b011c5d374c5e29e64
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")
12 if (is_android) {
13   import("//build/config/android/config.gni")
16 declare_args() {
17   # A list of extra dependencies to add to the root target. This allows a
18   # checkout to add additional targets without explicitly changing any checked-
19   # in files.
20   root_extra_deps = []
23 # In GN, a "group" is a dummy target that just lists other targets.
24 group("root") {
25   # This should not be linked into production and depends on test targets.
26   testonly = true
28   # Note that some dependencies are commented out. These are things that are
29   # currently written but not hooked up to the build yet. They may need to be
30   # completed or possibly just tested and then re-enabled.
31   deps = [
32     "//apps",
33     "//ash",
34     "//cc",
35     "//cc/blink",
36     "//chrome/browser",
37     "//chrome/browser/devtools",
38     "//chrome/common",
39     "//chrome/plugin",
40     "//chrome/renderer",
41     "//chrome/test",
42     "//chrome/tools",
43     "//chrome/utility",
44     "//components:all_components",
45     "//content",
46     "//content/shell:content_shell",
47     "//content/test:test_support",
48     "//crypto",
49     "//device/battery",
50     "//device/bluetooth",
51     "//device/nfc",
52     "//extensions/browser",
53     "//extensions/common",
54     "//extensions/common/api",
55     "//extensions/renderer",
56     "//gin",
57     "//gpu",
58     "//google_apis",
59     "//google_apis/gcm",
60     "//ipc",
61     "//ipc/mojo",
62     "//jingle:notifier",
63     "//media",
64     "//media/blink",
65     "//media/cast",
66     "//media/mojo",
67     "//mojo",
68     "//net",
69     "//pdf",
70     "//ppapi:ppapi_c",
71     "//printing",
72     "//remoting/client/plugin",
73     "//sandbox",
74     "//sdch",
75     "//skia",
76     "//storage/browser",
77     "//sql",
78     "//sync",
79     "//third_party/WebKit/public:all_blink",
80     "//third_party/angle:translator",
81     "//third_party/brotli",
82     "//third_party/cacheinvalidation",
83     "//third_party/cld",
84     "//third_party/cld_2",
85     "//third_party/ffmpeg",
86     "//third_party/flac",
87     "//third_party/harfbuzz-ng",
88     "//third_party/hunspell",
89     "//third_party/iccjpeg",
90     "//third_party/icu",
91     "//third_party/leveldatabase",
92     "//third_party/libphonenumber",
93     "//third_party/libjingle",
94     "//third_party/libpng",
95     "//third_party/libsrtp",
96     "//third_party/libusb",
97     "//third_party/libwebm",
98     "//third_party/libwebp",
99     "//third_party/libxslt",
100     "//third_party/libvpx",
101     "//third_party/libyuv",
102     "//third_party/lzma_sdk",
103     "//third_party/mesa",
104     "//third_party/opus",
105     "//third_party/ots",
106     "//third_party/protobuf:protobuf_lite",
107     "//third_party/qcms",
108     "//third_party/re2",
109     "//third_party/smhasher:cityhash",
110     "//third_party/smhasher:murmurhash3",
111     "//third_party/smhasher:pmurhash",
112     "//third_party/snappy",
113     "//third_party/speex",
114     "//third_party/usrsctp",
115     "//third_party/widevine/cdm:version_h",
116     "//third_party/webrtc",
117     "//third_party/zlib",
118     "//third_party:jpeg",
119     "//tools/gn",
120     "//tools/imagediff($host_toolchain)",
121     "//ui/accessibility",
122     "//ui/app_list",
123     "//ui/aura",
124     "//ui/base",
125     "//ui/display",
126     "//ui/events",
127     "//ui/gfx",
128     "//ui/gl",
129     "//ui/keyboard",
130     "//ui/native_theme",
131     "//ui/resources",
132     "//ui/snapshot",
133     "//ui/strings",
134     "//ui/surface",
135     "//ui/views",
136     "//ui/views/controls/webview",
137     "//ui/web_dialogs",
138     "//url",
139     "//v8:v8",
140   ] + root_extra_deps
142   if (!is_win) {
143     deps += [ "//breakpad:symupload" ]
144   }
146   if (is_linux) {
147     deps += [
148       "//dbus",
149       "//third_party/fontconfig",
150       "//third_party/freetype2",
151     ]
152   }
154   if (use_x11) {
155     deps += [ "//tools/xdisplaycheck" ]
156   }
158   if (use_aura) {
159     deps += [ "//ui/wm" ]
160   }
162   if (is_win) {
163     deps += [
164       "//ui/metro_viewer",
165     ]
166   }
168   if (is_win || is_mac || is_chromeos) {
169     # RLZ works on these platforms.
170     deps += [
171       "//rlz:rlz_lib",
172     ]
173   }
175   if (cpu_arch == "x86" || cpu_arch == "x64") {
176     # YASM is x86/x64 only.
177     deps += [ "//third_party/yasm($host_toolchain)" ]
178   }
180   if (is_android) {
181     deps += [
182       "//base/android/linker:chromium_android_linker",
183       "//build/android/gyp/test:hello_world",
184       "//build/android/rezip",
185       "//third_party/openmax_dl/dl",
186       "//content/shell/android:content_shell_apk",
187       "//chrome/android:chrome_shell_apk",
188       "//chrome/test/chromedriver/test/webview_shell:chromedriver_webview_shell_apk",
189       "//ui/android:ui_java",
190       "//third_party/android_tools:android_gcm_java",
191       "//third_party/android_tools:uiautomator_java",
192       "//third_party/android_tools:android_support_v13_java",
193       "//third_party/android_tools:android_support_v7_appcompat_java",
194       "//third_party/android_tools:android_support_v7_mediarouter_java",
195     ]
197     if (has_chrome_android_internal) {
198       deps += [
199         "//clank",
200       ]
201     }
203     # TODO(GYP): Move the targets in the rest of this block that still
204     # need to be made to work in the GN build to the bottom of the file
205     # so that all the remaining work is located in one place in the file.
206     # This block should contain only the targets that aren't actually
207     # needed on Android.
209     deps -= [
210       "//apps",  # Needs testing.
211       "//chrome/browser",
212       "//chrome/browser/devtools",
213       "//chrome/common",
214       "//chrome/plugin",
215       "//chrome/renderer",
216       "//chrome/test",
217       "//chrome/tools",
218       "//chrome/utility",
219       "//content/shell:content_shell",
220       "//extensions/browser",
221       "//extensions/common",
222       "//extensions/common/api",
223       "//extensions/renderer",
224       "//pdf",  # Not compiled on Android in GYP yet, either.
225       "//ppapi:ppapi_c",
226       "//third_party/libusb",
227       "//ui/keyboard",  # Blocked on content.
229       # Seems to not be compiled on Android. Otherwise it will need a config.h.
230       "//third_party/libxslt",
232       # Not relevant to Android.
233       "//ash",
234       "//tools/gn",
235       "//ui/aura",
236       "//ui/display",
237       "//ui/views",
238       "//ui/views/controls/webview",
240       # Fails on Android for unknown reasons.
241       "//third_party/flac",
242       "//breakpad:symupload",
244       # Not tested on Android yet:
245       "//google_apis/gcm",
246       "//remoting/client/plugin",
247       "//storage/browser",
248       "//third_party/cld_2",
249       "//third_party/ffmpeg",
250       "//ui/app_list",
251       "//ui/web_dialogs",
252     ]
253   }
255   if (use_ozone) {
256     deps += [
257       "//ui/ozone",
258       "//ui/ozone/demo",
259     ]
260   }
262   # Non-mobile builds.
263   if (!is_android && !is_ios) {
264     deps += [
265       "//device/usb",
266       "//third_party/pdfium/samples",
267     ]
268   }
270   # 
271   # TODO(GYP): Make everything below this work in the GN build.
272   #
274   if (is_mac) {
275     # TODO(dpranke): These are as-yet untriaged but need at least the above.
276     deps -= [
277       "//apps",
278       "//ash",
279       "//chrome/browser",
280       "//chrome/browser/devtools",
281       "//chrome/common",
282       "//chrome/plugin",
283       "//chrome/renderer",
284       "//chrome/test",
285       "//chrome/utility",
286       "//components:all_components",
287       "//content/shell:content_shell",
288       "//extensions/browser",
289       "//extensions/common",
290       "//extensions/common/api",
291       "//extensions/renderer",
292       "//remoting/client/plugin",
293       "//third_party/usrsctp",
294       "//ui/app_list",
295       "//ui/aura",
296       "//ui/keyboard",
297       "//ui/views",
298       "//ui/views/controls/webview",
299       "//ui/web_dialogs",
300     ]
301   }
303   if (is_win) {
304     deps -= [
305       "//apps",
306       "//ash",
307       "//chrome/browser",
308       "//chrome/browser/devtools",
309       "//chrome/common",
310       "//chrome/plugin",
311       "//chrome/renderer",
312       "//chrome/test",
313       "//chrome/utility",
314       "//components:all_components",
315       "//cc",
316       "//cc/blink",
317       "//content",
318       "//content/shell:content_shell",
319       "//content/test:test_support",
320       "//device/bluetooth",
321       "//extensions/browser",
322       "//extensions/common",
323       "//extensions/common/api",
324       "//extensions/renderer",
325       "//gpu",
326       "//google_apis",
327       "//google_apis/gcm",
328       "//jingle:notifier",
329       "//media",
330       "//media/blink",
331       "//media/cast",
332       "//media/mojo",
333       "//mojo",
334       "//pdf",
335       "//ppapi:ppapi_c",
336       "//printing",
337       "//remoting/client/plugin",
338       "//sandbox",
339       "//storage/browser",
340       "//sync",
341       "//third_party/WebKit/public:all_blink",
342       "//third_party/angle:translator",
343       "//third_party/ffmpeg",
344       "//third_party/leveldatabase",
345       "//third_party/libjingle",
346       "//third_party/usrsctp",
347       "//third_party/webrtc",
348       "//ui/accessibility",
349       "//ui/app_list",
350       "//ui/aura",
351       "//ui/base",
352       "//ui/display",
353       "//ui/events",
354       "//ui/gfx",
355       "//ui/gl",
356       "//ui/keyboard",
357       "//ui/native_theme",
358       "//ui/snapshot",
359       "//ui/surface",
360       "//ui/views",
361       "//ui/views/controls/webview",
362       "//ui/web_dialogs",
363       "//ui/wm",
364     ]
365   }