From 065d0f709343129f82ff3d072dcb36f612038598 Mon Sep 17 00:00:00 2001 From: Arman Uguray Date: Thu, 16 Jul 2015 18:12:13 -0700 Subject: service: Introduce a global Settings object Introduced a global Settings object that will store all runtime properties that would be associated with a config file, Android system properties, etc. Added a mechanism to parse command-line options which can be used to pass paths to configuration files, file path for UNIX domain socket based IPC mechanism, and any other property that is dynamic in nature. This will help us remove hardcoded paths, strings, and other such values in the future. Bug: 22532366 Change-Id: I8e790363ed31d44369f7991a8ea7132d1cace70b --- build/BUILD.gn | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build/BUILD.gn') diff --git a/build/BUILD.gn b/build/BUILD.gn index 9147f580d..fb20a34f6 100644 --- a/build/BUILD.gn +++ b/build/BUILD.gn @@ -50,7 +50,8 @@ config("linux") { ] cflags_cc = [ - "-std=c++11" + "-std=c++11", + "-fno-exceptions", ] defines = [ -- cgit v1.2.3