BUILD.gn 428 B

12345678910111213141516171819
  1. # Copyright 2016 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. config("fishhook_config") {
  5. include_dirs = [ "." ]
  6. visibility = [ ":fishhook" ]
  7. }
  8. source_set("fishhook") {
  9. testonly = true
  10. sources = [
  11. "fishhook.c",
  12. "fishhook.h",
  13. ]
  14. public_configs = [ ":fishhook_config" ]
  15. configs += [ ":fishhook_config" ]
  16. }