| 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 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
| 6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
| 7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
| 8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
| 9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
| 10 | 10 |
| (...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 assert(target_name != "") # Mark as used. | 1050 assert(target_name != "") # Mark as used. |
| 1051 sources = invoker.actual_sources | 1051 sources = invoker.actual_sources |
| 1052 assert( | 1052 assert( |
| 1053 sources == invoker.actual_sources, | 1053 sources == invoker.actual_sources, |
| 1054 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1054 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1055 } | 1055 } |
| 1056 | 1056 |
| 1057 assert_valid_out_dir("_unused") { | 1057 assert_valid_out_dir("_unused") { |
| 1058 actual_sources = [ "$root_build_dir/foo" ] | 1058 actual_sources = [ "$root_build_dir/foo" ] |
| 1059 } | 1059 } |
| 1060 |
| 1061 if (is_win) { |
| 1062 group("chromium_builder_lkgr_drmemory_win") { |
| 1063 testonly = true |
| 1064 |
| 1065 deps = [ |
| 1066 "//components/test_runner:layout_test_helper", |
| 1067 "//content/shell:content_shell", |
| 1068 "//content/shell:content_shell_crash_service", |
| 1069 ] |
| 1070 } |
| 1071 |
| 1072 group("chromium_builder_dbg_drmemory_win") { |
| 1073 testonly = true |
| 1074 |
| 1075 deps = [ |
| 1076 "//base:base_unittests", |
| 1077 "//cc:cc_unittests", |
| 1078 "//cc/blink:cc_blink_unittests", |
| 1079 "//chrome/installer/setup:setup_unittests", |
| 1080 "//chrome/installer/util:installer_util_unittests", |
| 1081 "//chrome/test:browser_tests", |
| 1082 "//chrome/test:chrome_app_unittests", |
| 1083 "//chrome/test:unit_tests", |
| 1084 "//chrome/test/chromedriver:chromedriver_unittests", |
| 1085 "//chrome_elf:chrome_elf_unittests", |
| 1086 "//components:components_unittests", |
| 1087 "//components/test_runner:layout_test_helper", |
| 1088 "//content/shell:content_shell_crash_service", |
| 1089 "//content/test:content_unittests", |
| 1090 "//courgette:courgette_unittests", |
| 1091 "//device:device_unittests", |
| 1092 "//extensions:extensions_browsertests", |
| 1093 "//extensions:extensions_unittests", |
| 1094 "//gin:gin_shell", |
| 1095 "//gin:gin_unittests", |
| 1096 "//google_apis:google_apis_unittests", |
| 1097 "//google_apis/gcm:gcm_unit_tests", |
| 1098 "//gpu:gpu_unittests", |
| 1099 "//ipc:ipc_tests", |
| 1100 "//jingle:jingle_unittests", |
| 1101 "//media:media_unittests", |
| 1102 "//media/capture:capture_unittests", |
| 1103 "//media/midi:midi_unittests", |
| 1104 "//mojo", |
| 1105 "//net:net_unittests", |
| 1106 "//printing:printing_unittests", |
| 1107 "//remoting:remoting_unittests", |
| 1108 "//skia:skia_unittests", |
| 1109 "//sql:sql_unittests", |
| 1110 "//third_party/WebKit/Source/platform:blink_heap_unittests", |
| 1111 "//third_party/WebKit/Source/platform:blink_platform_unittests", |
| 1112 "//third_party/angle/src/tests:angle_unittests", |
| 1113 "//third_party/cacheinvalidation:cacheinvalidation_unittests", |
| 1114 "//third_party/leveldatabase:env_chromium_unittests", |
| 1115 "//third_party/libaddressinput:libaddressinput_unittests", |
| 1116 "//third_party/libphonenumber:libphonenumber_unittests", |
| 1117 "//ui/accessibility:accessibility_unittests", |
| 1118 "//ui/aura:aura_unittests", |
| 1119 "//ui/compositor:compositor_unittests", |
| 1120 "//ui/display:display_unittests", |
| 1121 "//ui/events:events_unittests", |
| 1122 "//ui/gfx:gfx_unittests", |
| 1123 "//ui/gl:gl_unittests", |
| 1124 "//ui/keyboard:keyboard_unittests", |
| 1125 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1126 "//url:url_unittests", |
| 1127 ] |
| 1128 } |
| 1129 } |
| OLD | NEW |