| Index: base/BUILD.gn
|
| diff --git a/base/BUILD.gn b/base/BUILD.gn
|
| index f1c53295cc182bf2bc1236f3d18c72c3599823b2..53688482ff7f9a36b99627a8e594797576678a6a 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.
|
|
|