Created
August 12, 2016 07:25
-
-
Save tommynyquist/b7452f8eb70945bb024e86ef6690b554 to your computer and use it in GitHub Desktop.
GN args for all my configs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cat out-linux/Debug/args.gn | |
is_debug = true | |
is_clang = true | |
is_component_build = true | |
symbol_level = 1 | |
use_goma = true | |
$ cat out-engine/Debug/args.gn | |
import("//build/args/blimp_engine.gn") | |
is_debug = true | |
is_clang = true | |
is_component_build = true | |
symbol_level = 1 | |
use_goma = true | |
$ cat out-android/Debug/args.gn | |
target_os = "android" | |
target_cpu = "arm" | |
is_debug = true | |
is_clang = true | |
is_component_build = true | |
symbol_level = 1 | |
use_goma = true | |
enable_incremental_javac = true | |
disable_incremental_isolated_processes = true | |
use_signing_keys = true | |
android_channel = "default" | |
$ cat out-client/Debug/args.gn | |
import("//build/args/blimp_client.gn") | |
target_cpu = "arm" | |
is_debug = true | |
is_clang = true | |
is_component_build = true | |
symbol_level = 1 | |
use_goma = true | |
enable_incremental_javac = true | |
disable_incremental_isolated_processes = true | |
use_signing_keys = true | |
android_channel = "default" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment