Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: testing/buildbot/chromium.mac.json

Issue 1123213005: Add tests for chromium.mac's Mac10.10 builder (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "Mac GN": { 2 "Mac GN": {
3 "additional_compile_targets": [ 3 "additional_compile_targets": [
4 "accessibility_unittests", 4 "accessibility_unittests",
5 "base_unittests", 5 "base_unittests",
6 "cacheinvalidation_unittests", 6 "cacheinvalidation_unittests",
7 "cast_unittests", 7 "cast_unittests",
8 "cc_unittests", 8 "cc_unittests",
9 "chromedriver_unittests", 9 "chromedriver_unittests",
10 "crypto_unittests", 10 "crypto_unittests",
(...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 }, 888 },
889 { 889 {
890 "name": "telemetry_perf_unittests", 890 "name": "telemetry_perf_unittests",
891 "script": "telemetry_perf_unittests.py" 891 "script": "telemetry_perf_unittests.py"
892 }, 892 },
893 { 893 {
894 "name": "nacl_integration", 894 "name": "nacl_integration",
895 "script": "nacl_integration.py" 895 "script": "nacl_integration.py"
896 } 896 }
897 ] 897 ]
898 },
899 "Mac10.10 Tests": {
900 "gtest_tests": [
901 {
902 "swarming": {
903 "can_use_on_swarming_builders": true
erikchen 2015/05/08 18:54:36 This currently has no effect, right? Eventually we
smut 2015/05/08 19:03:56 Should just mean it's not explicitly disallowed. H
904 },
905 "test": "accessibility_unittests"
906 },
907 {
908 "swarming": {
909 "can_use_on_swarming_builders": true
910 },
911 "test": "app_list_unittests"
912 },
913 {
914 "swarming": {
915 "can_use_on_swarming_builders": true
916 },
917 "test": "base_unittests"
918 },
919 {
920 "test": "cacheinvalidation_unittests"
921 },
922 {
923 "swarming": {
924 "can_use_on_swarming_builders": true
925 },
926 "test": "cast_unittests"
927 },
928 {
929 "swarming": {
930 "can_use_on_swarming_builders": true
931 },
932 "test": "cc_unittests"
933 },
934 {
935 "test": "chromedriver_unittests"
936 },
937 {
938 "swarming": {
939 "can_use_on_swarming_builders": true
940 },
941 "test": "components_unittests"
942 },
943 {
944 "swarming": {
945 "can_use_on_swarming_builders": true
946 },
947 "test": "crypto_unittests"
948 },
949 {
950 "test": "extensions_unittests"
951 },
952 {
953 "test": "gcm_unit_tests"
954 },
955 {
956 "test": "google_apis_unittests"
957 },
958 {
959 "swarming": {
960 "can_use_on_swarming_builders": true
961 },
962 "test": "gpu_unittests"
963 },
964 {
965 "test": "jingle_unittests"
966 },
967 {
968 "swarming": {
969 "can_use_on_swarming_builders": true
970 },
971 "test": "media_unittests"
972 },
973 {
974 "swarming": {
975 "can_use_on_swarming_builders": true
976 },
977 "test": "message_center_unittests"
978 },
979 {
980 "swarming": {
981 "can_use_on_swarming_builders": true
982 },
983 "test": "midi_unittests"
984 },
985 {
986 "test": "mojo_common_unittests"
987 },
988 {
989 "test": "mojo_public_bindings_unittests"
990 },
991 {
992 "test": "mojo_public_environment_unittests"
993 },
994 {
995 "test": "mojo_public_system_unittests"
996 },
997 {
998 "test": "mojo_public_utility_unittests"
999 },
1000 {
1001 "test": "nacl_loader_unittests"
1002 },
1003 {
1004 "swarming": {
1005 "can_use_on_swarming_builders": true
1006 },
1007 "test": "net_unittests"
1008 },
1009 {
1010 "test": "ppapi_unittests"
1011 },
1012 {
1013 "test": "printing_unittests"
1014 },
1015 {
1016 "test": "remoting_unittests"
1017 },
1018 {
1019 "test": "skia_unittests"
1020 },
1021 {
1022 "test": "sql_unittests"
1023 },
1024 {
1025 "test": "sync_unit_tests"
1026 },
1027 {
1028 "swarming": {
1029 "can_use_on_swarming_builders": true
1030 },
1031 "test": "ui_base_unittests"
1032 },
1033 {
1034 "test": "url_unittests"
1035 }
1036 ],
1037 "scripts": [
1038 {
1039 "name": "telemetry_unittests",
1040 "script": "telemetry_unittests.py"
1041 },
1042 {
1043 "name": "telemetry_perf_unittests",
1044 "script": "telemetry_perf_unittests.py"
1045 },
1046 {
1047 "name": "nacl_integration",
1048 "script": "nacl_integration.py"
1049 }
1050 ]
898 } 1051 }
899 } 1052 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698