# Copyright 2019 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.

import("//build/config/ios/templates/ios_framework_bundle.gni")

ios_framework_bundle("hello_framework") {
  output_name = "HelloShared"

  sources = [
    "hello_shared.h",
    "hello_shared.m",
  ]
  public_headers = [ "hello_shared.h" ]

  defines = [ "HELLO_SHARED_IMPLEMENTATION" ]
  frameworks = [ "Foundation.framework" ]
}