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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
726 "/DELAYLOAD:powrprof.dll", | 726 "/DELAYLOAD:powrprof.dll", |
727 "/DELAYLOAD:setupapi.dll", | 727 "/DELAYLOAD:setupapi.dll", |
728 ] | 728 ] |
729 } else if (!is_nacl) { | 729 } else if (!is_nacl) { |
730 # Non-Windows. | 730 # Non-Windows. |
731 deps += [ "//third_party/libevent" ] | 731 deps += [ "//third_party/libevent" ] |
732 } | 732 } |
733 | 733 |
734 # Mac. | 734 # Mac. |
735 if (is_mac) { | 735 if (is_mac) { |
736 sources += [ | |
737 "memory/discardable_memory_mach.cc", | |
738 "memory/discardable_memory_mach.h", | |
739 ] | |
740 sources -= [ | 736 sources -= [ |
741 "native_library_posix.cc", | 737 "native_library_posix.cc", |
742 "strings/sys_string_conversions_posix.cc", | 738 "strings/sys_string_conversions_posix.cc", |
743 ] | 739 ] |
744 } else { | 740 } else { |
745 # Non-Mac. | 741 # Non-Mac. |
746 sources -= [ | 742 sources -= [ |
747 "files/file_path_watcher_fsevents.cc", | 743 "files/file_path_watcher_fsevents.cc", |
748 "files/file_path_watcher_fsevents.h", | 744 "files/file_path_watcher_fsevents.h", |
749 "files/file_path_watcher_kqueue.cc", | 745 "files/file_path_watcher_kqueue.cc", |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1469 | 1465 |
1470 # GYP: //base.gyp:base_java_unittest_support | 1466 # GYP: //base.gyp:base_java_unittest_support |
1471 android_library("base_java_unittest_support") { | 1467 android_library("base_java_unittest_support") { |
1472 deps = [ | 1468 deps = [ |
1473 ":base_java", | 1469 ":base_java", |
1474 ] | 1470 ] |
1475 java_files = | 1471 java_files = |
1476 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1472 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1477 } | 1473 } |
1478 } | 1474 } |
OLD | NEW |