OLD | NEW |
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 Loading... |
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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
829 # Mac. | 833 # Mac. |
830 if (is_mac) { | 834 if (is_mac) { |
831 sources -= [ | 835 sources -= [ |
832 "base_paths_posix.cc", | 836 "base_paths_posix.cc", |
833 "native_library_posix.cc", | 837 "native_library_posix.cc", |
834 "strings/sys_string_conversions_posix.cc", | 838 "strings/sys_string_conversions_posix.cc", |
835 ] | 839 ] |
836 deps += [ "//third_party/mach_override" ] | 840 deps += [ "//third_party/mach_override" ] |
837 } else { | 841 } else { |
838 # Non-Mac. | 842 # Non-Mac. |
839 sources -= [ "files/file_path_watcher_kqueue.cc" ] | 843 sources -= [ |
| 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 ] |
840 } | 849 } |
841 | 850 |
842 # Linux. | 851 # Linux. |
843 if (is_linux) { | 852 if (is_linux) { |
844 # TODO(brettw) this will need to be parameterized at some point. | 853 # TODO(brettw) this will need to be parameterized at some point. |
845 linux_configs = [ | 854 linux_configs = [ |
846 "//build/config/linux:glib", | 855 "//build/config/linux:glib", |
847 ] | 856 ] |
848 | 857 |
849 configs += linux_configs | 858 configs += linux_configs |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1352 source_prereqs = [ | 1361 source_prereqs = [ |
1353 "android/java/templates/native_libraries_array.h", | 1362 "android/java/templates/native_libraries_array.h", |
1354 ] | 1363 ] |
1355 | 1364 |
1356 package_name = "org/chromium/base/library_loader" | 1365 package_name = "org/chromium/base/library_loader" |
1357 include_path = "android/java/templates" | 1366 include_path = "android/java/templates" |
1358 } | 1367 } |
1359 | 1368 |
1360 | 1369 |
1361 } | 1370 } |
OLD | NEW |