blob: 7c089868d35761f3185c97004b3e1c2f04bea5ee (
plain) (
blame)
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
|
diff --git a/build/config/android/config.gni b/build/config/android/config.gni
index 41aa76cfef..c22e55c0d6 100644
--- a/build/config/android/config.gni
+++ b/build/config/android/config.gni
@@ -51,15 +51,7 @@ if (is_android) {
assert(checkout_android,
"Missing native Android toolchain support. |target_os| in your " +
".gclient configuration file (in the parent directory of " +
- "src) must include \"android\". For example:
-
-solutions = [
-...
-]
-target_os=[\"android\"]
-
-After adding |target_os| please re-run \"gclient sync\".
-")
+ "src) must include \"android\". For example: *snip")
}
}
diff --git a/testing/test.gni b/testing/test.gni
index 9883ddad1d..fd2fa6ed5e 100644
--- a/testing/test.gni
+++ b/testing/test.gni
@@ -300,9 +300,7 @@ template("mixed_test") {
fuzzer_args_joined = string_join(" ", _fuzzer_args)
- contents = "const char* kFuzzerArgs = \"${fuzzer_args_joined}\";
-const char* kFuzzerBinary = \"${_fuzzer_binary_name}\";
-"
+ contents = "const char* kFuzzerArgs = \"${fuzzer_args_joined}\";const char* kFuzzerBinary = \"${_fuzzer_binary_name}\";"
}
_additional_fuzz_deps = []
|