Skip to content

Instantly share code, notes, and snippets.

@tommynyquist
Created August 12, 2016 07:25
Show Gist options
  • Save tommynyquist/b7452f8eb70945bb024e86ef6690b554 to your computer and use it in GitHub Desktop.
Save tommynyquist/b7452f8eb70945bb024e86ef6690b554 to your computer and use it in GitHub Desktop.
GN args for all my configs
$ 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