Commit 9d11eb1d authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

Update compile target in check_network_annotations.py

This is to prevent unnecessary compiles in CQ compile step.

Bug: 904770
Change-Id: Ia1080f887725b6e00a27248c60153127db7dbf76
Reviewed-on: https://chromium-review.googlesource.com/c/1337138Reviewed-by: default avatarNicolas Ouellet-Payeur <nicolaso@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#609568}
parent f4e728bc
......@@ -784,6 +784,16 @@ group("gn_all") {
}
}
if ((is_linux || is_win) && enable_remoting && !use_ozone) {
# This group is used for network annotation check test.
group("shipped_binaries") {
deps = [
"//chrome:chrome",
"//remoting/host:host",
]
}
}
if (is_fuchsia) {
# TODO(https://crbug.com/731217): This can't practically be in //v8 without
# duplicating all the Fuchsia running infrastructure there.
......
......@@ -1261,6 +1261,10 @@
"label": "//ui/native_theme:native_theme_unittests",
"type": "windowed_test_launcher",
},
"shipped_binaries": {
"label": "//:shipped_binaries",
"type": "additional_compile_target",
},
"ui_android_unittests": {
"label": "//ui/android:ui_android_unittests",
"type": "console_test_launcher",
......
......@@ -131,11 +131,12 @@ SKIP_GN_ISOLATE_MAP_TARGETS = {
'net_junit_tests',
'net_junit_tests',
'service_junit_tests',
'shipped_binaries',
'system_webview_apk',
'ui_junit_tests',
'vrcore_fps_test',
'vr_common_perftests',
'vr_perf_tests',
'vrcore_fps_test',
'webapk_client_junit_tests',
'webapk_shell_apk_h2o_junit_tests',
'webapk_shell_apk_junit_tests',
......
......@@ -35,7 +35,7 @@ def main_run(args):
def main_compile_targets(args):
json.dump(['gn_all'], args.output)
json.dump(['shipped_binaries'], args.output)
if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment