Fix FullScreen crash in Webapp
[platform/framework/web/chromium-efl.git] / native_client / BUILD.gn
1 # Copyright (c) 2014 The Native Client 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.
4
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.
10 #
11 # All targets in this file file are built by default.
12 #
13 # Here we declare the meta targets which pull in the various architecture
14 # combinations of the real targets.
15 #
16
17 import("config.gni")
18
19 group("trusted") {
20   deps = [
21     "//native_client/src:trusted_targets",
22   ]
23 }
24
25 #
26 # This is the root untrusted target which will build all trusted components
27 #
28 group("untrusted") {
29   deps = [
30     "//native_client/src/:irt_targets($toolchain_irt)",
31     "//native_client/src/:untrusted_targets($toolchain_untrusted)",
32   ]
33 }