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 | 6 |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1095 "message_loop/message_loop_test.cc", | 1095 "message_loop/message_loop_test.cc", |
1096 "message_loop/message_loop_test.h", | 1096 "message_loop/message_loop_test.h", |
1097 ] | 1097 ] |
1098 | 1098 |
1099 deps = [ | 1099 deps = [ |
1100 ":base", | 1100 ":base", |
1101 "//testing/gtest", | 1101 "//testing/gtest", |
1102 ] | 1102 ] |
1103 } | 1103 } |
1104 | 1104 |
| 1105 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. |
| 1106 source_set("protect_file_posix") { |
| 1107 sources = [ |
| 1108 "files/protect_file_posix.cc", |
| 1109 ] |
| 1110 } |
| 1111 |
1105 test("base_unittests") { | 1112 test("base_unittests") { |
1106 sources = [ | 1113 sources = [ |
1107 "android/application_status_listener_unittest.cc", | 1114 "android/application_status_listener_unittest.cc", |
1108 "android/jni_android_unittest.cc", | 1115 "android/jni_android_unittest.cc", |
1109 "android/jni_array_unittest.cc", | 1116 "android/jni_array_unittest.cc", |
1110 "android/jni_string_unittest.cc", | 1117 "android/jni_string_unittest.cc", |
1111 "android/path_utils_unittest.cc", | 1118 "android/path_utils_unittest.cc", |
1112 "android/scoped_java_ref_unittest.cc", | 1119 "android/scoped_java_ref_unittest.cc", |
1113 "android/sys_utils_unittest.cc", | 1120 "android/sys_utils_unittest.cc", |
1114 "async_socket_io_handler_unittest.cc", | 1121 "async_socket_io_handler_unittest.cc", |
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1500 # GYP: //base.gyp:base_unittests_apk | 1507 # GYP: //base.gyp:base_unittests_apk |
1501 unittest_apk("base_unittests_apk") { | 1508 unittest_apk("base_unittests_apk") { |
1502 deps = [ | 1509 deps = [ |
1503 ":base_java", | 1510 ":base_java", |
1504 ":base_java_unittest_support", | 1511 ":base_java_unittest_support", |
1505 ":base_unittests", | 1512 ":base_unittests", |
1506 ] | 1513 ] |
1507 unittests_dep = ":base_unittests" | 1514 unittests_dep = ":base_unittests" |
1508 } | 1515 } |
1509 } | 1516 } |
OLD | NEW |