Chromium Code Reviews| 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 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1128 source_set("protect_file_posix") { | 1128 source_set("protect_file_posix") { |
| 1129 sources = [ | 1129 sources = [ |
| 1130 "files/protect_file_posix.cc", | 1130 "files/protect_file_posix.cc", |
| 1131 ] | 1131 ] |
| 1132 | 1132 |
| 1133 deps = [ | 1133 deps = [ |
| 1134 "//base", | 1134 "//base", |
| 1135 ] | 1135 ] |
| 1136 } | 1136 } |
| 1137 | 1137 |
| 1138 if (is_win) { | |
| 1139 shared_library("pe_image_test") { | |
| 1140 sources = [ | |
| 1141 "win/pe_image_test.cc", | |
| 1142 ] | |
| 1143 ldflags = [ | |
| 1144 "/DELAYLOAD:cfgmgr32.dll", | |
| 1145 "/DELAYLOAD:shell32.dll", | |
| 1146 "/SUBSYSTEM:WINDOWS", | |
| 1147 ] | |
| 1148 libs = [ | |
| 1149 "cfgmgr32.lib", | |
| 1150 "shell32.lib", | |
| 1151 ] | |
| 1152 } | |
| 1153 } | |
| 1154 | |
| 1138 test("base_unittests") { | 1155 test("base_unittests") { |
| 1139 sources = [ | 1156 sources = [ |
| 1140 "android/application_status_listener_unittest.cc", | 1157 "android/application_status_listener_unittest.cc", |
| 1141 "android/content_uri_utils_unittest.cc", | 1158 "android/content_uri_utils_unittest.cc", |
| 1142 "android/jni_android_unittest.cc", | 1159 "android/jni_android_unittest.cc", |
| 1143 "android/jni_array_unittest.cc", | 1160 "android/jni_array_unittest.cc", |
| 1144 "android/jni_string_unittest.cc", | 1161 "android/jni_string_unittest.cc", |
| 1145 "android/path_utils_unittest.cc", | 1162 "android/path_utils_unittest.cc", |
| 1146 "android/scoped_java_ref_unittest.cc", | 1163 "android/scoped_java_ref_unittest.cc", |
| 1147 "android/sys_utils_unittest.cc", | 1164 "android/sys_utils_unittest.cc", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1367 "win/shortcut_unittest.cc", | 1384 "win/shortcut_unittest.cc", |
| 1368 "win/startup_information_unittest.cc", | 1385 "win/startup_information_unittest.cc", |
| 1369 "win/win_util_unittest.cc", | 1386 "win/win_util_unittest.cc", |
| 1370 "win/wrapped_window_proc_unittest.cc", | 1387 "win/wrapped_window_proc_unittest.cc", |
| 1371 ] | 1388 ] |
| 1372 | 1389 |
| 1373 deps = [ | 1390 deps = [ |
| 1374 ":base", | 1391 ":base", |
| 1375 ":i18n", | 1392 ":i18n", |
| 1376 ":message_loop_tests", | 1393 ":message_loop_tests", |
| 1394 ":pe_image_test", | |
|
rvargas (doing something else)
2015/02/24 20:03:22
This is a win specific dep so I think it'll break
Will Harris
2015/02/24 20:46:54
Done.
| |
| 1377 ":prefs", | 1395 ":prefs", |
| 1378 ":prefs_test_support", | 1396 ":prefs_test_support", |
| 1379 "//base/allocator", | 1397 "//base/allocator", |
| 1380 "//base/test:run_all_unittests", | 1398 "//base/test:run_all_unittests", |
| 1381 "//base/test:test_support", | 1399 "//base/test:test_support", |
| 1382 "//base/third_party/dynamic_annotations", | 1400 "//base/third_party/dynamic_annotations", |
| 1383 "//base/third_party/nspr", | 1401 "//base/third_party/nspr", |
| 1384 "//testing/gmock", | 1402 "//testing/gmock", |
| 1385 "//testing/gtest", | 1403 "//testing/gtest", |
| 1386 "//third_party/icu", | 1404 "//third_party/icu", |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1542 | 1560 |
| 1543 # GYP: //base.gyp:base_java_unittest_support | 1561 # GYP: //base.gyp:base_java_unittest_support |
| 1544 android_library("base_java_unittest_support") { | 1562 android_library("base_java_unittest_support") { |
| 1545 deps = [ | 1563 deps = [ |
| 1546 ":base_java", | 1564 ":base_java", |
| 1547 ] | 1565 ] |
| 1548 java_files = | 1566 java_files = |
| 1549 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1567 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1550 } | 1568 } |
| 1551 } | 1569 } |
| OLD | NEW |