• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2019 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
5import("//build/config/ios/templates/ios_framework_bundle.gni")
6
7ios_framework_bundle("hello_framework") {
8  output_name = "HelloShared"
9
10  sources = [
11    "hello_shared.h",
12    "hello_shared.m",
13  ]
14  public_headers = [ "hello_shared.h" ]
15
16  defines = [ "HELLO_SHARED_IMPLEMENTATION" ]
17  frameworks = [ "Foundation.framework" ]
18}
19