-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathargs.gni
More file actions
38 lines (34 loc) · 1.67 KB
/
args.gni
File metadata and controls
38 lines (34 loc) · 1.67 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright by zhaosonggo Authors. All rights reserved.
# This file was automatically generated by a script on 2026年 1月12日 星期一 22时12分48秒 CST.
#
# In this file, you should define project-specific build arguments and
# provide project-level overrides for global build configurations.
# ==============================================================================
# Project-Specific Build Arguments
# ==============================================================================
# Use declare_args() to define build flags or variables that are unique to
# this project. These can be overridden by the end-user in their build
# output directory (e.g., out/default/args.gn).
#
# Example:
# enable_feature_x = false
# project_api_key = "default_key"
#
declare_args() {
# ==> Please add your project-specific GN arguments here.
enable_memory_test = false
}
# ==============================================================================
# Project-Level Global Build Configurations
# ==============================================================================
# These variables are used to inject configurations into all targets within
# this project. They are read by the main BUILDCONFIG.gn from the base build
# repository.
# A list of global include directories for this project.
# Paths should be absolute from the source root, starting with "//".
# Example: self_include_dirs = [ "//src/public", "//third_party/utils/include" ]
self_include_dirs = []
# A list of C/C++ compiler flags to be applied to all targets in the project.
# These flags are appended to the base flags provided by the toolchain.
# Example: self_cflags_cc = [ "-Wno-unused-function" ]
self_cflags_cc = []