Commit 33bcc134 authored by baxley's avatar baxley Committed by Commit bot

Add BUILD.gn for ios/third_party/fishhook.

Create GN build files for fishhook.

BUG=589100

Review URL: https://codereview.chromium.org/1732543002

Cr-Commit-Position: refs/heads/master@{#377372}
parent 6c9db5f9
......@@ -206,6 +206,7 @@ group("both_gn_and_gyp") {
"//ios/public/provider/chrome/browser",
"//ios/public/provider/web",
"//ios/testing:ocmock_support_unittest",
"//ios/third_party/fishhook",
"//ios/third_party/ochamcrest",
"//ios/web:ios_web_unittests",
"//ios/web/shell:ios_web_shell",
......
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("fishhook_config") {
include_dirs = [ "src" ]
visibility = [ ":fishhook" ]
}
source_set("fishhook") {
testonly = true
sources = [
"src/fishhook.c",
"src/fishhook.h",
]
public_configs = [ ":fishhook_config" ]
configs += [ ":fishhook_config" ]
}
......@@ -5,6 +5,7 @@
{
'targets': [
{
# GN version: //ios/third_party/fishhook
'target_name': 'fishhook',
'type': 'static_library',
'sources': [
......
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