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

Side by Side Diff: base/BUILD.gn

Issue 283423003: Use FSEvents for recursive file watch on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix dcheck Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/rules.gni") 5 import("//build/config/android/rules.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 component("base") { 8 component("base") {
9 sources = [ 9 sources = [
10 "third_party/dmg_fp/dmg_fp.h", 10 "third_party/dmg_fp/dmg_fp.h",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "files/file_win.cc", 177 "files/file_win.cc",
178 "files/file_enumerator.cc", 178 "files/file_enumerator.cc",
179 "files/file_enumerator.h", 179 "files/file_enumerator.h",
180 "files/file_enumerator_posix.cc", 180 "files/file_enumerator_posix.cc",
181 "files/file_enumerator_win.cc", 181 "files/file_enumerator_win.cc",
182 "files/file_path.cc", 182 "files/file_path.cc",
183 "files/file_path.h", 183 "files/file_path.h",
184 "files/file_path_constants.cc", 184 "files/file_path_constants.cc",
185 "files/file_path_watcher.cc", 185 "files/file_path_watcher.cc",
186 "files/file_path_watcher.h", 186 "files/file_path_watcher.h",
187 "files/file_path_watcher_fsevents.cc",
188 "files/file_path_watcher_fsevents.h",
187 "files/file_path_watcher_kqueue.cc", 189 "files/file_path_watcher_kqueue.cc",
190 "files/file_path_watcher_kqueue.h",
188 "files/file_path_watcher_linux.cc", 191 "files/file_path_watcher_linux.cc",
192 "files/file_path_watcher_mac.cc",
189 "files/file_path_watcher_win.cc", 193 "files/file_path_watcher_win.cc",
190 "files/file_proxy.cc", 194 "files/file_proxy.cc",
191 "files/file_proxy.h", 195 "files/file_proxy.h",
192 "files/file_util_proxy.cc", 196 "files/file_util_proxy.cc",
193 "files/file_util_proxy.h", 197 "files/file_util_proxy.h",
194 "files/important_file_writer.cc", 198 "files/important_file_writer.cc",
195 "files/important_file_writer.h", 199 "files/important_file_writer.h",
196 "files/memory_mapped_file.cc", 200 "files/memory_mapped_file.cc",
197 "files/memory_mapped_file.h", 201 "files/memory_mapped_file.h",
198 "files/memory_mapped_file_posix.cc", 202 "files/memory_mapped_file_posix.cc",
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 # Mac. 831 # Mac.
828 if (is_mac) { 832 if (is_mac) {
829 sources -= [ 833 sources -= [
830 "base_paths_posix.cc", 834 "base_paths_posix.cc",
831 "native_library_posix.cc", 835 "native_library_posix.cc",
832 "strings/sys_string_conversions_posix.cc", 836 "strings/sys_string_conversions_posix.cc",
833 ] 837 ]
834 deps += [ "//third_party/mach_override" ] 838 deps += [ "//third_party/mach_override" ]
835 } else { 839 } else {
836 # Non-Mac. 840 # Non-Mac.
837 sources -= [ "files/file_path_watcher_kqueue.cc" ] 841 sources -= [
842 "files/file_path_watcher_fsevents.cc",
843 "files/file_path_watcher_fsevents.h",
844 "files/file_path_watcher_kqueue.cc",
845 "files/file_path_watcher_kqueue.h",
846 ]
838 } 847 }
839 848
840 # Linux. 849 # Linux.
841 if (is_linux) { 850 if (is_linux) {
842 # TODO(brettw) this will need to be parameterized at some point. 851 # TODO(brettw) this will need to be parameterized at some point.
843 linux_configs = [ 852 linux_configs = [
844 "//build/config/linux:glib", 853 "//build/config/linux:glib",
845 ] 854 ]
846 855
847 configs += linux_configs 856 configs += linux_configs
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
1349 source_prereqs = [ 1358 source_prereqs = [
1350 "android/java/templates/native_libraries_array.h", 1359 "android/java/templates/native_libraries_array.h",
1351 ] 1360 ]
1352 1361
1353 package_name = "org/chromium/base/library_loader" 1362 package_name = "org/chromium/base/library_loader"
1354 include_path = "android/java/templates" 1363 include_path = "android/java/templates"
1355 } 1364 }
1356 1365
1357 1366
1358 } 1367 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698