Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / 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 # In GN, a "group" is a dummy target that just lists other targets.
12
13 # This is the root trusted target which will build all trusted components.
14 # Depending on this target will build all the trusted libraries.
15 group("trusted") {
16  deps = [
17    "//native_client/src/trusted/cpu_features:all_cpu_features",
18    "//native_client/src/trusted/desc:all_desc",
19  ]
20 }
21
22 # This is the root untrusted target which will build all trusted components
23 group("untrusted") {
24 }
25
26 # This is the root test target which will build all tests
27 group("tests") {
28 }