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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1035 "message_loop/message_loop_test.cc", | 1035 "message_loop/message_loop_test.cc", |
1036 "message_loop/message_loop_test.h", | 1036 "message_loop/message_loop_test.h", |
1037 ] | 1037 ] |
1038 | 1038 |
1039 deps = [ | 1039 deps = [ |
1040 ":base", | 1040 ":base", |
1041 "//testing/gtest", | 1041 "//testing/gtest", |
1042 ] | 1042 ] |
1043 } | 1043 } |
1044 | 1044 |
1045 # TODO(pasko): Remove this target when crbug.com/424562 is fixed. | |
1046 source_set("protect_file_posix") { | |
1047 sources = [ | |
1048 "files/protect_file_posix.cc", | |
1049 ] | |
1050 | |
1051 deps = [ | |
1052 "//base", | |
1053 ] | |
1054 } | |
1055 | |
1056 if (is_win) { | 1045 if (is_win) { |
1057 # Target to manually rebuild pe_image_test.dll which is checked into | 1046 # Target to manually rebuild pe_image_test.dll which is checked into |
1058 # base/test/data/pe_image. | 1047 # base/test/data/pe_image. |
1059 shared_library("pe_image_test") { | 1048 shared_library("pe_image_test") { |
1060 sources = [ | 1049 sources = [ |
1061 "win/pe_image_test.cc", | 1050 "win/pe_image_test.cc", |
1062 ] | 1051 ] |
1063 ldflags = [ | 1052 ldflags = [ |
1064 "/DELAYLOAD:cfgmgr32.dll", | 1053 "/DELAYLOAD:cfgmgr32.dll", |
1065 "/DELAYLOAD:shell32.dll", | 1054 "/DELAYLOAD:shell32.dll", |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 | 1482 |
1494 # GYP: //base.gyp:base_java_unittest_support | 1483 # GYP: //base.gyp:base_java_unittest_support |
1495 android_library("base_java_unittest_support") { | 1484 android_library("base_java_unittest_support") { |
1496 deps = [ | 1485 deps = [ |
1497 ":base_java", | 1486 ":base_java", |
1498 ] | 1487 ] |
1499 java_files = | 1488 java_files = |
1500 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1489 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
1501 } | 1490 } |
1502 } | 1491 } |
OLD | NEW |