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

Unified Diff: BUILD.gn

Issue 1995823002: [libfuzzer] moving icu fuzzers to //third_party/icu, additional fuzzers. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: nits Created 4 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 | « no previous file | fuzzers/BUILD.gn » ('j') | fuzzers/icu_break_iterator_fuzzer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 35f5e840db24ec3107b076f1ba2a9a43cd54b28b..f3767c568d79c352c3a5709f08280ef97d953bee 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -42,6 +42,16 @@ config("icu_config") {
"source/common",
"source/i18n",
]
+
+ if (icu_use_data_file) {
+ defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE" ]
+ } else {
+ if (is_win) {
+ defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED" ]
+ } else {
+ defines += [ "ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC" ]
+ }
+ }
jungshik at Google 2016/05/19 07:21:54 I think these lines were added by another CL. Well
}
# Config used only by ICU code.
« no previous file with comments | « no previous file | fuzzers/BUILD.gn » ('j') | fuzzers/icu_break_iterator_fuzzer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698