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

Unified Diff: rlz/BUILD.gn

Issue 1801043002: [iOS] //rlz:rlz_id should not be build on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@crypto
Patch Set: Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: rlz/BUILD.gn
diff --git a/rlz/BUILD.gn b/rlz/BUILD.gn
index 4bc222479c29a2a06054cee36c04e7d416d3c6f6..c260b452f044b70d7beb3f0b638d8524af99408a 100644
--- a/rlz/BUILD.gn
+++ b/rlz/BUILD.gn
@@ -120,14 +120,16 @@ test("rlz_unittests") {
]
}
-executable("rlz_id") {
- sources = [
- "examples/rlz_id.cc",
- ]
- deps = [
- ":rlz_lib",
- "//build/config/sanitizers:deps",
- ]
+if (!is_ios) {
+ executable("rlz_id") {
+ sources = [
+ "examples/rlz_id.cc",
+ ]
+ deps = [
+ ":rlz_lib",
+ "//build/config/sanitizers:deps",
+ ]
+ }
}
if (is_win) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698