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

Side by Side Diff: BUILD.gn

Issue 2455463002: Remove references to DrMemory from chromium repo. (Closed)
Patch Set: Buildbot Created 4 years, 1 month 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 | PRESUBMIT_test.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 assert(target_name != "") # Mark as used. 1075 assert(target_name != "") # Mark as used.
1076 sources = invoker.actual_sources 1076 sources = invoker.actual_sources
1077 assert( 1077 assert(
1078 sources == invoker.actual_sources, 1078 sources == invoker.actual_sources,
1079 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") 1079 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283")
1080 } 1080 }
1081 1081
1082 assert_valid_out_dir("_unused") { 1082 assert_valid_out_dir("_unused") {
1083 actual_sources = [ "$root_build_dir/foo" ] 1083 actual_sources = [ "$root_build_dir/foo" ]
1084 } 1084 }
1085
1086 if (is_win) {
1087 group("chromium_builder_lkgr_drmemory_win") {
1088 testonly = true
1089
1090 deps = [
1091 "//content/shell:content_shell",
1092 "//content/shell:content_shell_crash_service",
1093 ]
1094 }
1095
1096 group("chromium_builder_dbg_drmemory_win") {
1097 testonly = true
1098
1099 deps = [
1100 "//base:base_unittests",
1101 "//cc:cc_unittests",
1102 "//cc/blink:cc_blink_unittests",
1103 "//chrome/installer/setup:setup_unittests",
1104 "//chrome/installer/util:installer_util_unittests",
1105 "//chrome/test:browser_tests",
1106 "//chrome/test:chrome_app_unittests",
1107 "//chrome/test:unit_tests",
1108 "//chrome/test/chromedriver:chromedriver_unittests",
1109 "//chrome_elf:chrome_elf_unittests",
1110 "//components:components_unittests",
1111 "//content/shell:content_shell_crash_service",
1112 "//content/test:content_browsertests",
1113 "//content/test:content_unittests",
1114 "//courgette:courgette_unittests",
1115 "//crypto:crypto_unittests",
1116 "//device:device_unittests",
1117 "//extensions:extensions_browsertests",
1118 "//extensions:extensions_unittests",
1119 "//gin:gin_shell",
1120 "//gin:gin_unittests",
1121 "//google_apis:google_apis_unittests",
1122 "//google_apis/gcm:gcm_unit_tests",
1123 "//gpu:gpu_unittests",
1124 "//ipc:ipc_tests",
1125 "//jingle:jingle_unittests",
1126 "//media:media_unittests",
1127 "//media/capture:capture_unittests",
1128 "//media/cast:cast_unittests",
1129 "//media/midi:midi_unittests",
1130 "//mojo",
1131 "//net:net_unittests",
1132 "//printing:printing_unittests",
1133 "//remoting:remoting_unittests",
1134 "//skia:skia_unittests",
1135 "//sql:sql_unittests",
1136 "//storage//browser:storage_unittests",
1137 "//third_party/WebKit/Source/platform:blink_platform_unittests",
1138 "//third_party/WebKit/Source/platform/heap:blink_heap_unittests",
1139 "//third_party/angle/src/tests:angle_unittests",
1140 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
1141 "//third_party/leveldatabase:env_chromium_unittests",
1142 "//third_party/libaddressinput:libaddressinput_unittests",
1143 "//third_party/libphonenumber:libphonenumber_unittests",
1144 "//ui/accessibility:accessibility_unittests",
1145 "//ui/aura:aura_unittests",
1146 "//ui/compositor:compositor_unittests",
1147 "//ui/display:display_unittests",
1148 "//ui/events:events_unittests",
1149 "//ui/gfx:gfx_unittests",
1150 "//ui/gl:gl_unittests",
1151 "//ui/keyboard:keyboard_unittests",
1152 "//ui/touch_selection:ui_touch_selection_unittests",
1153 "//url:url_unittests",
1154 ]
1155 }
1156 }
OLDNEW
« no previous file with comments | « no previous file | PRESUBMIT_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698