| 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) {
|
|
|