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

Unified Diff: third_party/ijar/BUILD.gn

Issue 1901473003: 🐞 Update version of third_party/ijar (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | third_party/ijar/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/ijar/BUILD.gn
diff --git a/third_party/ijar/BUILD.gn b/third_party/ijar/BUILD.gn
index 7fbb45c9755d54ec5b96d7f350139c6d4c48d144..044edc4d6bd5a020e34c02666405bf3cd8ccb648 100644
--- a/third_party/ijar/BUILD.gn
+++ b/third_party/ijar/BUILD.gn
@@ -10,9 +10,15 @@ if (current_toolchain == host_toolchain) {
"classfile.cc",
"common.h",
"ijar.cc",
+ "mapped_file.h",
"zip.cc",
"zip.h",
]
+ if (is_win) {
+ sources += [ "mapped_file_windows.cc" ]
+ } else {
+ sources += [ "mapped_file_unix.cc" ]
+ }
# Always build release since this is a build tool.
if (is_debug) {
« no previous file with comments | « no previous file | third_party/ijar/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698