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