Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2943)

Unified Diff: build/config/BUILDCONFIG.gn

Issue 2848943003: [infra] Assembles the SDK using GN rather than create_sdk.py (Closed)
Patch Set: Move copy_dev_compiler_tools out of the default full SDK build Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | build/config/win/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index d01496f9363c5a413c9abef53e61fafbc66530e4..19e1985225c82c5e00b55d452f49925563838d8e 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -153,6 +153,8 @@ declare_args() {
if (current_os == "win") {
is_android = false
is_chromeos = false
+ is_fuchsia = false
+ is_fuchsia_host = false
is_ios = false
is_linux = false
is_mac = false
@@ -162,6 +164,8 @@ if (current_os == "win") {
} else if (current_os == "mac") {
is_android = false
is_chromeos = false
+ is_fuchsia = false
+ is_fuchsia_host = false
is_ios = false
is_linux = false
is_mac = true
@@ -171,6 +175,8 @@ if (current_os == "win") {
} else if (current_os == "android") {
is_android = true
is_chromeos = false
+ is_fuchsia = false
+ is_fuchsia_host = false
is_ios = false
is_linux = false
is_mac = false
@@ -180,6 +186,8 @@ if (current_os == "win") {
} else if (current_os == "linux") {
is_android = false
is_chromeos = false
+ is_fuchsia = false
+ is_fuchsia_host = false
is_ios = false
is_linux = true
is_mac = false
@@ -227,9 +235,7 @@ if (is_win) {
]
}
if (is_posix) {
- _native_compiler_configs += [
- "//build/config/gcc:no_exceptions",
- ]
+ _native_compiler_configs += [ "//build/config/gcc:no_exceptions" ]
}
if (is_linux) {
« no previous file with comments | « BUILD.gn ('k') | build/config/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698