| Index: base/BUILD.gn
|
| diff --git a/base/BUILD.gn b/base/BUILD.gn
|
| index 3bbd8978a8afefd7d5ef5e2c8a72fd0b5e0f6294..107e261c3d69455cc365309b9c02257b54230a0d 100644
|
| --- a/base/BUILD.gn
|
| +++ b/base/BUILD.gn
|
| @@ -184,8 +184,12 @@ component("base") {
|
| "files/file_path_constants.cc",
|
| "files/file_path_watcher.cc",
|
| "files/file_path_watcher.h",
|
| + "files/file_path_watcher_fsevents.cc",
|
| + "files/file_path_watcher_fsevents.h",
|
| "files/file_path_watcher_kqueue.cc",
|
| + "files/file_path_watcher_kqueue.h",
|
| "files/file_path_watcher_linux.cc",
|
| + "files/file_path_watcher_mac.cc",
|
| "files/file_path_watcher_win.cc",
|
| "files/file_proxy.cc",
|
| "files/file_proxy.h",
|
| @@ -831,7 +835,12 @@ component("base") {
|
| deps += [ "//third_party/mach_override" ]
|
| } else {
|
| # Non-Mac.
|
| - sources -= [ "files/file_path_watcher_kqueue.cc" ]
|
| + sources -= [
|
| + "files/file_path_watcher_fsevents.cc"
|
| + "files/file_path_watcher_fsevents.h"
|
| + "files/file_path_watcher_kqueue.cc"
|
| + "files/file_path_watcher_kqueue.h"
|
| + ]
|
| }
|
|
|
| # Linux.
|
|
|