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

Side by Side Diff: trunk/src/base/BUILD.gn

Issue 316853003: Revert 274735 "Use FSEvents for recursive file watch on Mac" (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 | trunk/src/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",
189 "files/file_path_watcher_kqueue.cc", 187 "files/file_path_watcher_kqueue.cc",
190 "files/file_path_watcher_kqueue.h",
191 "files/file_path_watcher_linux.cc", 188 "files/file_path_watcher_linux.cc",
192 "files/file_path_watcher_mac.cc",
193 "files/file_path_watcher_win.cc", 189 "files/file_path_watcher_win.cc",
194 "files/file_proxy.cc", 190 "files/file_proxy.cc",
195 "files/file_proxy.h", 191 "files/file_proxy.h",
196 "files/file_util_proxy.cc", 192 "files/file_util_proxy.cc",
197 "files/file_util_proxy.h", 193 "files/file_util_proxy.h",
198 "files/important_file_writer.cc", 194 "files/important_file_writer.cc",
199 "files/important_file_writer.h", 195 "files/important_file_writer.h",
200 "files/memory_mapped_file.cc", 196 "files/memory_mapped_file.cc",
201 "files/memory_mapped_file.h", 197 "files/memory_mapped_file.h",
202 "files/memory_mapped_file_posix.cc", 198 "files/memory_mapped_file_posix.cc",
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 # Mac. 829 # Mac.
834 if (is_mac) { 830 if (is_mac) {
835 sources -= [ 831 sources -= [
836 "base_paths_posix.cc", 832 "base_paths_posix.cc",
837 "native_library_posix.cc", 833 "native_library_posix.cc",
838 "strings/sys_string_conversions_posix.cc", 834 "strings/sys_string_conversions_posix.cc",
839 ] 835 ]
840 deps += [ "//third_party/mach_override" ] 836 deps += [ "//third_party/mach_override" ]
841 } else { 837 } else {
842 # Non-Mac. 838 # Non-Mac.
843 sources -= [ 839 sources -= [ "files/file_path_watcher_kqueue.cc" ]
844 "files/file_path_watcher_fsevents.cc",
845 "files/file_path_watcher_fsevents.h",
846 "files/file_path_watcher_kqueue.cc",
847 "files/file_path_watcher_kqueue.h",
848 ]
849 } 840 }
850 841
851 # Linux. 842 # Linux.
852 if (is_linux) { 843 if (is_linux) {
853 # TODO(brettw) this will need to be parameterized at some point. 844 # TODO(brettw) this will need to be parameterized at some point.
854 linux_configs = [ 845 linux_configs = [
855 "//build/config/linux:glib", 846 "//build/config/linux:glib",
856 ] 847 ]
857 848
858 configs += linux_configs 849 configs += linux_configs
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 source_prereqs = [ 1352 source_prereqs = [
1362 "android/java/templates/native_libraries_array.h", 1353 "android/java/templates/native_libraries_array.h",
1363 ] 1354 ]
1364 1355
1365 package_name = "org/chromium/base/library_loader" 1356 package_name = "org/chromium/base/library_loader"
1366 include_path = "android/java/templates" 1357 include_path = "android/java/templates"
1367 } 1358 }
1368 1359
1369 1360
1370 } 1361 }
OLDNEW
« no previous file with comments | « no previous file | trunk/src/base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698