| Index: base/BUILD.gn
|
| diff --git a/base/BUILD.gn b/base/BUILD.gn
|
| index b4faecf84d4330f3cc3d62b686a375e61a850827..33ff366d87a1f85005495428debc69cc0ca61a06 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",
|
| @@ -834,7 +838,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.
|
|
|