traffic_annotation_auditor_ui.cc 559 B

1234567891011121314151617181920
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include <stdio.h>
  5. #include "build/build_config.h"
  6. #if BUILDFLAG(IS_WIN)
  7. int wmain(int argc, wchar_t* argv[]) {
  8. #else
  9. int main(int argc, char* argv[]) {
  10. #endif
  11. printf(
  12. "traffic_annotation_auditor has been removed from the codebase. Please "
  13. "use auditor.py instead.\n"
  14. "See tools/traffic_annotation/scripts/auditor/README.md for "
  15. "instructions.\n");
  16. return 1;
  17. }