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 1090 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1101 "message_loop/message_loop_test.cc", | 1101 "message_loop/message_loop_test.cc", |
1102 "message_loop/message_loop_test.h", | 1102 "message_loop/message_loop_test.h", |
1103 ] | 1103 ] |
1104 | 1104 |
1105 deps = [ | 1105 deps = [ |
1106 ":base", | 1106 ":base", |
1107 "//testing/gtest", | 1107 "//testing/gtest", |
1108 ] | 1108 ] |
1109 } | 1109 } |
1110 | 1110 |
| 1111 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. |
| 1112 source_set("protect_file_posix") { |
| 1113 sources = [ |
| 1114 "files/protect_file_posix.cc", |
| 1115 ] |
| 1116 } |
| 1117 |
1111 test("base_unittests") { | 1118 test("base_unittests") { |
1112 sources = [ | 1119 sources = [ |
1113 "android/application_status_listener_unittest.cc", | 1120 "android/application_status_listener_unittest.cc", |
1114 "android/jni_android_unittest.cc", | 1121 "android/jni_android_unittest.cc", |
1115 "android/jni_array_unittest.cc", | 1122 "android/jni_array_unittest.cc", |
1116 "android/jni_string_unittest.cc", | 1123 "android/jni_string_unittest.cc", |
1117 "android/path_utils_unittest.cc", | 1124 "android/path_utils_unittest.cc", |
1118 "android/scoped_java_ref_unittest.cc", | 1125 "android/scoped_java_ref_unittest.cc", |
1119 "android/sys_utils_unittest.cc", | 1126 "android/sys_utils_unittest.cc", |
1120 "async_socket_io_handler_unittest.cc", | 1127 "async_socket_io_handler_unittest.cc", |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1511 # GYP: //base.gyp:base_unittests_apk | 1518 # GYP: //base.gyp:base_unittests_apk |
1512 unittest_apk("base_unittests_apk") { | 1519 unittest_apk("base_unittests_apk") { |
1513 deps = [ | 1520 deps = [ |
1514 ":base_java", | 1521 ":base_java", |
1515 ":base_java_unittest_support", | 1522 ":base_java_unittest_support", |
1516 ":base_unittests", | 1523 ":base_unittests", |
1517 ] | 1524 ] |
1518 unittests_dep = ":base_unittests" | 1525 unittests_dep = ":base_unittests" |
1519 } | 1526 } |
1520 } | 1527 } |
OLD | NEW |