-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy path.gn
25 lines (19 loc) · 894 Bytes
/
.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Copyright (c) 2014 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This file is used by the experimental meta-buildsystem in native_client to
# find the root of the source tree and to set startup options.
# The location of the top of the build (BUILD.gn).
root = "//native_client"
# The location of the build configuration file.
buildconfig = "//build/config/BUILDCONFIG.gn"
# The python interpreter to use by default. On Windows, this will look
# for python3.exe and python3.bat.
script_executable = "python3"
# The secondary source root is a parallel directory tree where
# GN build files are placed when they can not be placed directly
# in the source tree, e.g. for third party source trees.
secondary_source = "//build/secondary/"
default_args = {
use_custom_libcxx = false
}