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 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1075 group("chromium_builder_dbg_drmemory_win") { | 1075 group("chromium_builder_dbg_drmemory_win") { |
1076 testonly = true | 1076 testonly = true |
1077 | 1077 |
1078 deps = [ | 1078 deps = [ |
1079 "//base:base_unittests", | 1079 "//base:base_unittests", |
1080 "//cc:cc_unittests", | 1080 "//cc:cc_unittests", |
1081 "//cc/blink:cc_blink_unittests", | 1081 "//cc/blink:cc_blink_unittests", |
1082 "//chrome/installer/setup:setup_unittests", | 1082 "//chrome/installer/setup:setup_unittests", |
1083 "//chrome/installer/util:installer_util_unittests", | 1083 "//chrome/installer/util:installer_util_unittests", |
1084 "//chrome/test:browser_tests", | 1084 "//chrome/test:browser_tests", |
1085 "//chrome/test:chrome_app_unittests", | 1085 |
| 1086 # https://crbug.com/640185 |
| 1087 # "//chrome/test:chrome_app_unittests", |
1086 "//chrome/test:unit_tests", | 1088 "//chrome/test:unit_tests", |
1087 "//chrome/test/chromedriver:chromedriver_unittests", | 1089 "//chrome/test/chromedriver:chromedriver_unittests", |
1088 "//chrome_elf:chrome_elf_unittests", | 1090 "//chrome_elf:chrome_elf_unittests", |
1089 "//components:components_unittests", | 1091 "//components:components_unittests", |
1090 "//components/test_runner:layout_test_helper", | 1092 "//components/test_runner:layout_test_helper", |
1091 "//content/shell:content_shell_crash_service", | 1093 "//content/shell:content_shell_crash_service", |
1092 "//content/test:content_browsertests", | 1094 "//content/test:content_browsertests", |
1093 "//content/test:content_unittests", | 1095 "//content/test:content_unittests", |
1094 "//courgette:courgette_unittests", | 1096 "//courgette:courgette_unittests", |
1095 "//crypto:crypto_unittests", | 1097 "//crypto:crypto_unittests", |
(...skipping 30 matching lines...) Expand all Loading... |
1126 "//ui/display:display_unittests", | 1128 "//ui/display:display_unittests", |
1127 "//ui/events:events_unittests", | 1129 "//ui/events:events_unittests", |
1128 "//ui/gfx:gfx_unittests", | 1130 "//ui/gfx:gfx_unittests", |
1129 "//ui/gl:gl_unittests", | 1131 "//ui/gl:gl_unittests", |
1130 "//ui/keyboard:keyboard_unittests", | 1132 "//ui/keyboard:keyboard_unittests", |
1131 "//ui/touch_selection:ui_touch_selection_unittests", | 1133 "//ui/touch_selection:ui_touch_selection_unittests", |
1132 "//url:url_unittests", | 1134 "//url:url_unittests", |
1133 ] | 1135 ] |
1134 } | 1136 } |
1135 } | 1137 } |
OLD | NEW |