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

Unified Diff: third_party/snappy/BUILD.gn

Issue 2778153002: Add missing header files to GN files (Closed)
Patch Set: fix merge Created 3 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 | « third_party/libxml/BUILD.gn ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/snappy/BUILD.gn
diff --git a/third_party/snappy/BUILD.gn b/third_party/snappy/BUILD.gn
index ab665d162ef0d3821dec837f808fbc31002aa848..324a06ab58db11fb582d356a40c81c21a0477487 100644
--- a/third_party/snappy/BUILD.gn
+++ b/third_party/snappy/BUILD.gn
@@ -43,6 +43,14 @@ static_library("snappy") {
"src/snappy.h",
]
+ if (is_win) {
+ sources += [ "win32/snappy-stubs-public.h" ]
+ } else if (is_mac) {
+ sources += [ "mac/snappy-stubs-public.h" ]
+ } else {
+ sources += [ "linux/snappy-stubs-public.h" ]
+ }
+
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [
"//build/config/compiler:no_chromium_code",
« no previous file with comments | « third_party/libxml/BUILD.gn ('k') | tools/gn/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698