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/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
727 set_sources_assignment_filter([]) | 727 set_sources_assignment_filter([]) |
728 sources += [ | 728 sources += [ |
729 "files/file_path_watcher_linux.cc", | 729 "files/file_path_watcher_linux.cc", |
730 "posix/unix_domain_socket_linux.cc", | 730 "posix/unix_domain_socket_linux.cc", |
731 "sys_info_linux.cc", | 731 "sys_info_linux.cc", |
732 ] | 732 ] |
733 set_sources_assignment_filter(sources_assignment_filter) | 733 set_sources_assignment_filter(sources_assignment_filter) |
734 | 734 |
735 deps += [ | 735 deps += [ |
736 ":base_jni_headers", | 736 ":base_jni_headers", |
| 737 "//third_party/android_tools:cpu_features", |
737 "//third_party/ashmem", | 738 "//third_party/ashmem", |
738 "//third_party/android_tools:cpu_features", | |
739 ] | 739 ] |
740 | 740 |
741 # logging.cc uses the Android logging library. | 741 # logging.cc uses the Android logging library. |
742 libs = [ "log" ] | 742 libs = [ "log" ] |
743 } | 743 } |
744 | 744 |
745 if (is_chromeos) { | 745 if (is_chromeos) { |
746 sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ] | 746 sources -= [ "power_monitor/power_monitor_device_source_posix.cc" ] |
747 } | 747 } |
748 | 748 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1066 sources = [ | 1066 sources = [ |
1067 "message_loop/message_pump_perftest.cc", | 1067 "message_loop/message_pump_perftest.cc", |
1068 | 1068 |
1069 # "test/run_all_unittests.cc", | 1069 # "test/run_all_unittests.cc", |
1070 "threading/thread_perftest.cc", | 1070 "threading/thread_perftest.cc", |
1071 ] | 1071 ] |
1072 deps = [ | 1072 deps = [ |
1073 ":base", | 1073 ":base", |
1074 "//base/test:test_support", | 1074 "//base/test:test_support", |
1075 "//base/test:test_support_perf", | 1075 "//base/test:test_support_perf", |
| 1076 "//testing/gtest", |
1076 "//testing/perf", | 1077 "//testing/perf", |
1077 "//testing/gtest", | |
1078 ] | 1078 ] |
1079 | 1079 |
1080 if (is_android) { | 1080 if (is_android) { |
1081 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1081 deps += [ "//testing/android/native_test:native_test_native_code" ] |
1082 } | 1082 } |
1083 } | 1083 } |
1084 | 1084 |
1085 test("base_i18n_perftests") { | 1085 test("base_i18n_perftests") { |
1086 sources = [ | 1086 sources = [ |
1087 "i18n/streaming_utf8_validator_perftest.cc", | 1087 "i18n/streaming_utf8_validator_perftest.cc", |
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1744 | 1744 |
1745 # GYP: //base.gyp:base_java_unittest_support | 1745 # GYP: //base.gyp:base_java_unittest_support |
1746 android_library("base_java_unittest_support") { | 1746 android_library("base_java_unittest_support") { |
1747 deps = [ | 1747 deps = [ |
1748 ":base_java", | 1748 ":base_java", |
1749 ] | 1749 ] |
1750 java_files = | 1750 java_files = |
1751 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1751 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1752 } | 1752 } |
1753 } | 1753 } |
OLD | NEW |