| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 sources -= [ | 817 sources -= [ |
| 818 "native_library_posix.cc", | 818 "native_library_posix.cc", |
| 819 "strings/sys_string_conversions_posix.cc", | 819 "strings/sys_string_conversions_posix.cc", |
| 820 "threading/platform_thread_internal_posix.cc", | 820 "threading/platform_thread_internal_posix.cc", |
| 821 ] | 821 ] |
| 822 | 822 |
| 823 if (is_asan) { | 823 if (is_asan) { |
| 824 # TODO(GYP) hook up asan on Mac. GYP has this extra dylib: | 824 # TODO(GYP) hook up asan on Mac. GYP has this extra dylib: |
| 825 #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ] | 825 #data += [ "$root_out_dir/libclang_rt.asan_osx_dynamic.dylib" ] |
| 826 } | 826 } |
| 827 | |
| 828 if (is_ios) { | |
| 829 sources -= [ | |
| 830 "files/file_path_watcher_fsevents.cc", | |
| 831 "files/file_path_watcher_fsevents.h", | |
| 832 ] | |
| 833 } | |
| 834 } else { | 827 } else { |
| 835 # Non-Mac. | 828 # Non-Mac. |
| 836 sources -= [ | 829 sources -= [ |
| 837 "files/file_path_watcher_fsevents.cc", | 830 "files/file_path_watcher_fsevents.cc", |
| 838 "files/file_path_watcher_fsevents.h", | 831 "files/file_path_watcher_fsevents.h", |
| 839 "files/file_path_watcher_kqueue.cc", | 832 "files/file_path_watcher_kqueue.cc", |
| 840 "files/file_path_watcher_kqueue.h", | 833 "files/file_path_watcher_kqueue.h", |
| 841 ] | 834 ] |
| 842 } | 835 } |
| 843 | 836 |
| (...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1693 | 1686 |
| 1694 # GYP: //base.gyp:base_java_unittest_support | 1687 # GYP: //base.gyp:base_java_unittest_support |
| 1695 android_library("base_java_unittest_support") { | 1688 android_library("base_java_unittest_support") { |
| 1696 deps = [ | 1689 deps = [ |
| 1697 ":base_java", | 1690 ":base_java", |
| 1698 ] | 1691 ] |
| 1699 java_files = | 1692 java_files = |
| 1700 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1701 } | 1694 } |
| 1702 } | 1695 } |
| OLD | NEW |